bug in jde-util
Dan Pomohaci <[email protected]>
| Newsgroups | gmane.emacs.jdee |
|---|---|
| Message-ID | <[email protected]> |
Hello, I installed the new version 2.3.5.1 and I think I found a bug in jde-util. I presume that function replace-in-string must replace REGEXP with NEWTEXT each time it occurs in STRING. In fact it does only one replacement. As I use emacs 22.50 it was easy to make a simple fix: (defun replace-in-string (string regexp newtext &optional literal) "Replace REGEXP with NEWTEXT in STRIng." (replace-regexp-in-string regexp newtext string t literal))) Best regards, Dan