From: Juri Linkov Date: Thu, 25 May 2006 21:57:12 +0000 (+0000) Subject: (query-replace-read-from, query-replace-read-to): X-Git-Tag: emacs-pretest-22.0.90~2318 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=311f8bac681de42381779ab3c578ec071b8958e4;p=emacs.git (query-replace-read-from, query-replace-read-to): Remove 8th arg KEEP-ALL in read-from-minibuffer. --- 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)