]> git.eshelyaron.com Git - emacs.git/commitdiff
(query-replace-read-from, query-replace-read-to):
authorJuri Linkov <juri@jurta.org>
Thu, 25 May 2006 21:57:12 +0000 (21:57 +0000)
committerJuri Linkov <juri@jurta.org>
Thu, 25 May 2006 21:57:12 +0000 (21:57 +0000)
Remove 8th arg KEEP-ALL in read-from-minibuffer.

lisp/replace.el

index f1792b499fcd93f1ef446e3bff9f4bf88b7fd889..305573ad0e56c77ac734a927fac51091a8c98cf3 100644 (file)
@@ -113,7 +113,7 @@ wants to replace FROM with TO."
                 (format "%s: " prompt))
               nil nil nil
               query-replace-from-history-variable
-              nil t t))))
+              nil t))))
       (if (and (zerop (length from)) lastto lastfrom)
          (progn
            (set query-replace-from-history-variable
@@ -180,7 +180,7 @@ the original string if not."
      (read-from-minibuffer
       (format "%s %s with: " prompt (query-replace-descr from))
       nil nil nil
-      query-replace-to-history-variable from t t))
+      query-replace-to-history-variable from t))
    regexp-flag))
 
 (defun query-replace-read-args (prompt regexp-flag &optional noerror)