summaryrefslogtreecommitdiff
path: root/lisp/replace.el
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-04-07 04:37:03 +0000
committerKarl Heuer <kwzh@gnu.org>1994-04-07 04:37:03 +0000
commit2bfc1a9143986f2f4be911e885b30f8627ab3157 (patch)
treef24175c8996b6c428e9bddd3cba7cef65387dd78 /lisp/replace.el
parente477d6cfdde071d8eabe4f910b0f61b807e530b4 (diff)
downloademacs-2bfc1a9143986f2f4be911e885b30f8627ab3157.tar.gz
(replace-regexp): Fix misbalanced quotes.
Diffstat (limited to 'lisp/replace.el')
-rw-r--r--lisp/replace.el2
1 files changed, 1 insertions, 1 deletions
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: