]> git.eshelyaron.com Git - emacs.git/commitdiff
(query-replace-regexp-eval): Doc fix.
authorGerd Moellmann <gerd@gnu.org>
Wed, 2 May 2001 11:29:57 +0000 (11:29 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 2 May 2001 11:29:57 +0000 (11:29 +0000)
lisp/ChangeLog
lisp/replace.el

index 72ffb66d9969e8a463e04ce555408f494f5caa12..73f4644e511602503d2b9150eb249b7e8cb2ad95 100644 (file)
@@ -1,3 +1,7 @@
+2001-05-02  Gerd Moellmann  <gerd@gnu.org>
+
+       * replace.el (query-replace-regexp-eval): Doc fix.
+
 2001-05-01  Stefan Monnier  <monnier@cs.yale.edu>
 
        * diff-mode.el (diff-nonexistant-face): New face.
index 469133db8de617992ca3438a1d80c3aeaa6e7957..6ece7d2b01cdb6f8d7577a2289c22798a8a526a8 100644 (file)
@@ -1,6 +1,6 @@
 ;;; replace.el --- replace commands for Emacs.
 
-;; Copyright (C) 1985, 86, 87, 92, 94, 96, 1997, 2000
+;; Copyright (C) 1985, 86, 87, 92, 94, 96, 1997, 2000, 2001
 ;;  Free Software Foundation, Inc.
 
 ;; 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
 `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
-N is a digit) stands for whatever what matched the Nth `\\(...\\)' in REGEXP.
+`\0' to stand for whatever matched the whole of REGEXP, and `\N' (where
+N is a digit) to stand for whatever matched the Nth `\(...\)' in REGEXP.
 Use `\\#&' or `\\#N' if you want a number instead of a string.
 
 In 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'
 are non-nil and REGEXP has no uppercase letters.
 
 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
-only matches surrounded by word boundaries.
+only matches that are surrounded by word boundaries.
 Fourth and fifth arg START and END specify the region to operate on."
   (interactive
    (let (from to start end)