summaryrefslogtreecommitdiff
path: root/lisp/replace.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2017-05-19 11:12:51 +0300
committerEli Zaretskii <eliz@gnu.org>2017-05-19 11:12:51 +0300
commitbb5c6614eb171eef8c08474e0f949fe18ef4b230 (patch)
treef59b29f1c4ab343f6730320dc5dc1ab6f2a09d30 /lisp/replace.el
parent7c951fd51832badb09055a8e177f8ec358cbbdcf (diff)
downloademacs-bb5c6614eb171eef8c08474e0f949fe18ef4b230.tar.gz
emacs-bb5c6614eb171eef8c08474e0f949fe18ef4b230.tar.bz2
emacs-bb5c6614eb171eef8c08474e0f949fe18ef4b230.zip
* lisp/replace.el (query-replace-regexp-eval): Doc fix.
Diffstat (limited to 'lisp/replace.el')
-rw-r--r--lisp/replace.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/replace.el b/lisp/replace.el
index 477cc9c3055..64dfe7da22d 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -464,8 +464,8 @@ reference `replace-count' to get the number of replacements already made.
If the result of TO-EXPR is not a string, it is converted to one using
`prin1-to-string' with the NOESCAPE argument (which see).
-For convenience, when entering TO-EXPR interactively, you can use `\\&' or
-`\\0' to stand for whatever matched the whole of REGEXP, and `\\N' (where
+For convenience, when entering TO-EXPR interactively, you can use `\\&'
+to stand for whatever matched the whole of REGEXP, and `\\N' (where
N is a digit) to stand for whatever matched the Nth `\\(...\\)' (1-based)
in REGEXP.