From 311f8bac681de42381779ab3c578ec071b8958e4 Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Thu, 25 May 2006 21:57:12 +0000 Subject: [PATCH] (query-replace-read-from, query-replace-read-to): Remove 8th arg KEEP-ALL in read-from-minibuffer. --- lisp/replace.el | 4 ++-- 1 file 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) -- 2.39.5