summaryrefslogtreecommitdiff
path: root/lisp/replace.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@jurta.org>2006-05-25 21:57:12 +0000
committerJuri Linkov <juri@jurta.org>2006-05-25 21:57:12 +0000
commit311f8bac681de42381779ab3c578ec071b8958e4 (patch)
treea39d26ebab8911800ceda0a8a0612997349fcc2c /lisp/replace.el
parentd1802d7bfe418252c905a49dc3fa62442ba2e458 (diff)
downloademacs-311f8bac681de42381779ab3c578ec071b8958e4.tar.gz
(query-replace-read-from, query-replace-read-to):
Remove 8th arg 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 f1792b499fc..305573ad0e5 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -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)