From: Karl Heuer Date: Thu, 7 Apr 1994 04:37:03 +0000 (+0000) Subject: (replace-regexp): Fix misbalanced quotes. X-Git-Tag: emacs-19.34~9130 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=880f22a14aeb6e34c64e4e9edd7711c769453565;p=emacs.git (replace-regexp): Fix misbalanced quotes. --- diff --git a/lisp/replace.el b/lisp/replace.el index 3bfa33f1e28..d51be301266 100644 --- a/lisp/replace.el +++ b/lisp/replace.el @@ -134,7 +134,7 @@ Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace only matches surrounded by word boundaries. In TO-STRING, `\\&' stands for whatever matched the whole of REGEXP, and `\\=\\N' (where N is a digit) stands for - whatever what matched the Nth `\\(...\\)' in REGEXP." + whatever what matched the Nth `\\(...\\)' in REGEXP. This function is usually the wrong thing to use in a Lisp program. What you probably want is a loop like this: