emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-28 e93e31c895: ; Fix last change in isearch.el


From: Eli Zaretskii
Subject: emacs-28 e93e31c895: ; Fix last change in isearch.el
Date: Thu, 21 Apr 2022 14:57:24 -0400 (EDT)

branch: emacs-28
commit e93e31c8952bf8a7acf898e4ff4d6541c897e12c
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    ; Fix last change in isearch.el
    
    * lisp/isearch.el (isearch-occur): Move the recent addition
    to doc string from here...
    (isearch-query-replace-regexp): ...to here.
---
 lisp/isearch.el | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/lisp/isearch.el b/lisp/isearch.el
index d829744c3a..a68c3a4748 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -2383,7 +2383,12 @@ type \\[help-command] at that time."
 
 (defun isearch-query-replace-regexp (&optional arg)
   "Start `query-replace-regexp' with string to replace from last search string.
-See `isearch-query-replace' for more information."
+See `isearch-query-replace' for more information.
+
+As each match is found, the user must type a character saying
+what to do with it.  Type SPC or `y' to replace the match,
+DEL or `n' to skip and go to the next match.  For more directions,
+type \\[help-command] at that time."
   (interactive
    (list current-prefix-arg))
   (isearch-query-replace arg t))
@@ -2398,12 +2403,7 @@ the search words, ignoring punctuation.  If the last 
search
 command was a regular expression search, REGEXP is the regular
 expression used in that search.  If the last search command searched
 for a literal string, REGEXP is constructed by quoting all the special
-characters in that string.
-
-As each match is found, the user must type a character saying
-what to do with it.  Type SPC or `y' to replace the match,
-DEL or `n' to skip and go to the next match.  For more directions,
-type \\[help-command] at that time."
+characters in that string."
   (interactive
    (let* ((perform-collect (consp current-prefix-arg))
          (regexp (cond



reply via email to

[Prev in Thread] Current Thread [Next in Thread]