diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-05-02 11:29:57 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-05-02 11:29:57 +0000 |
commit | 470bbe9bbee2c6f645bf75ea6c8e88857c7e78d3 (patch) | |
tree | a49a68a308d8b435035a254917d409af9ed2f2d5 /lisp/replace.el | |
parent | 61e9f9f328c25b8410db99c7e66e4a0c4651b48f (diff) | |
download | emacs-470bbe9bbee2c6f645bf75ea6c8e88857c7e78d3.tar.gz emacs-470bbe9bbee2c6f645bf75ea6c8e88857c7e78d3.tar.bz2 emacs-470bbe9bbee2c6f645bf75ea6c8e88857c7e78d3.zip |
(query-replace-regexp-eval): Doc fix.
Diffstat (limited to 'lisp/replace.el')
-rw-r--r-- | lisp/replace.el | 8 |
1 files changed, 4 insertions, 4 deletions
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 @@ ;;; 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) |