help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Emacs lisp question


From: Alexis
Subject: Re: Emacs lisp question
Date: Tue, 19 Apr 2016 21:59:05 +1000
User-agent: mu4e 0.9.16; emacs 24.5.3


Matthias Pfeifer <mpfeifer77@gmail.com> writes:

(while (search-forward "CLASSNAME" nil t) (replace-match classname)) (goto-char (point-min)) (while (search-forward "PACKAGE" nil t) (replace-match packagename) ) ) )

Does changing these two calls to `replace-match` to:

   (replace-match classname t)

and

   (replace-match packagename t)

respectively, fix the issue?


Alexis.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]