summaryrefslogtreecommitdiff
path: root/lisp/replace.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2004-11-20 22:09:50 +0000
committerRichard M. Stallman <rms@gnu.org>2004-11-20 22:09:50 +0000
commitbbe9f1755cc18041e60f4d4be48bfa3aceaf1b9d (patch)
treef0307fd5e9b2e8a6df020b69815f37e55cce1aa9 /lisp/replace.el
parent9d00469fcad8a8e99cd65452a2db26fb2d96ed29 (diff)
(query-replace-read-to, query-replace-read-from):
Specify t for KEEP-ALL in read-from-minibuffer.
Diffstat (limited to 'lisp/replace.el')
-rw-r--r--lisp/replace.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/replace.el b/lisp/replace.el
index 0c0ee821c67..97b05cbc80a 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -92,7 +92,7 @@ wants to replace FROM with TO."
(format "%s: " string))
nil nil nil
query-replace-from-history-variable
- nil t))))
+ nil t t))))
(if (and (zerop (length from)) lastto lastfrom)
(cons lastfrom
(query-replace-compile-replacement lastto regexp-flag))
@@ -156,7 +156,7 @@ the original string if not."
(read-from-minibuffer
(format "%s %s with: " string (query-replace-descr from))
nil nil nil
- query-replace-to-history-variable from t))
+ query-replace-to-history-variable from t t))
regexp-flag))
(defun query-replace-read-args (string regexp-flag &optional noerror)