From 880f22a14aeb6e34c64e4e9edd7711c769453565 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 7 Apr 1994 04:37:03 +0000 Subject: [PATCH] (replace-regexp): Fix misbalanced quotes. --- lisp/replace.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.39.5