aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/replace.el8
2 files changed, 8 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 72ffb66d996..73f4644e511 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12001-05-02 Gerd Moellmann <gerd@gnu.org>
2
3 * replace.el (query-replace-regexp-eval): Doc fix.
4
12001-05-01 Stefan Monnier <monnier@cs.yale.edu> 52001-05-01 Stefan Monnier <monnier@cs.yale.edu>
2 6
3 * diff-mode.el (diff-nonexistant-face): New face. 7 * diff-mode.el (diff-nonexistant-face): New face.
diff --git a/lisp/replace.el b/lisp/replace.el
index 469133db8de..6ece7d2b01c 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 3;; Copyright (C) 1985, 86, 87, 92, 94, 96, 1997, 2000, 2001
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.
@@ -136,8 +136,8 @@ If the result of TO-EXPR is not a string, it is converted to one using
136`prin1-to-string' with the NOESCAPE argument (which see). 136`prin1-to-string' with the NOESCAPE argument (which see).
137 137
138For convenience, when entering TO-EXPR interactively, you can use `\\&' or 138For convenience, when entering TO-EXPR interactively, you can use `\\&' or
139`\\0'to stand for whatever matched the whole of REGEXP, and `\\=\\N' (where 139`\0' to stand for whatever matched the whole of REGEXP, and `\N' (where
140N is a digit) stands for whatever what matched the Nth `\\(...\\)' in REGEXP. 140N is a digit) to stand for whatever matched the Nth `\(...\)' in REGEXP.
141Use `\\#&' or `\\#N' if you want a number instead of a string. 141Use `\\#&' or `\\#N' if you want a number instead of a string.
142 142
143In Transient Mark mode, if the mark is active, operate on the contents 143In Transient Mark mode, if the mark is active, operate on the contents
@@ -151,7 +151,7 @@ Preserves case in each replacement if `case-replace' and `case-fold-search'
151are non-nil and REGEXP has no uppercase letters. 151are non-nil and REGEXP has no uppercase letters.
152 152
153Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace 153Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
154only matches surrounded by word boundaries. 154only matches that are surrounded by word boundaries.
155Fourth and fifth arg START and END specify the region to operate on." 155Fourth and fifth arg START and END specify the region to operate on."
156 (interactive 156 (interactive
157 (let (from to start end) 157 (let (from to start end)