aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/replace.el
diff options
context:
space:
mode:
authorAndreas Schwab2002-02-18 20:30:58 +0000
committerAndreas Schwab2002-02-18 20:30:58 +0000
commit653479ad87f91d036dd5d12febe119c111a561eb (patch)
tree2889d6903d7d6a59895082f2c3543efb97da12c0 /lisp/replace.el
parent88258edfb6e934db5e672183273a2cf706da0890 (diff)
downloademacs-653479ad87f91d036dd5d12febe119c111a561eb.tar.gz
emacs-653479ad87f91d036dd5d12febe119c111a561eb.zip
(query-replace-regexp-eval): Doc fix.
Diffstat (limited to 'lisp/replace.el')
-rw-r--r--lisp/replace.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/replace.el b/lisp/replace.el
index 425d769e466..4e6b3cbfafe 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -1,6 +1,6 @@
1;;; replace.el --- replace commands for Emacs 1;;; replace.el --- replace commands for Emacs
2 2
3;; Copyright (C) 1985, 86, 87, 92, 94, 96, 1997, 2000, 2001 3;; Copyright (C) 1985, 86, 87, 92, 94, 96, 1997, 2000, 2001, 2002
4;; Free Software Foundation, Inc. 4;; Free Software Foundation, Inc.
5 5
6;; This file is part of GNU Emacs. 6;; This file is part of GNU Emacs.
@@ -153,8 +153,8 @@ If the result of TO-EXPR is not a string, it is converted to one using
153`prin1-to-string' with the NOESCAPE argument (which see). 153`prin1-to-string' with the NOESCAPE argument (which see).
154 154
155For convenience, when entering TO-EXPR interactively, you can use `\\&' or 155For convenience, when entering TO-EXPR interactively, you can use `\\&' or
156`\0' to stand for whatever matched the whole of REGEXP, and `\N' (where 156`\\0' to stand for whatever matched the whole of REGEXP, and `\\N' (where
157N is a digit) to stand for whatever matched the Nth `\(...\)' in REGEXP. 157N is a digit) to stand for whatever matched the Nth `\\(...\\)' in REGEXP.
158Use `\\#&' or `\\#N' if you want a number instead of a string. 158Use `\\#&' or `\\#N' if you want a number instead of a string.
159 159
160In Transient Mark mode, if the mark is active, operate on the contents 160In Transient Mark mode, if the mark is active, operate on the contents