Mercurial > emacs
changeset 44190:598fbedb891e
(operation query-replace): Use new `noerror' arg for
`query-replace-read-args'.
(operation query-replace-regexp): Ditto
author | Colin Walters <walters@gnu.org> |
---|---|
date | Wed, 27 Mar 2002 22:37:42 +0000 |
parents | ee2adfa7e248 |
children | d4d47a5e5fd0 |
files | lisp/ibuf-ext.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ibuf-ext.el Wed Mar 27 22:27:44 2002 +0000 +++ b/lisp/ibuf-ext.el Wed Mar 27 22:37:42 2002 +0000 @@ -323,7 +323,7 @@ (define-ibuffer-op query-replace (&rest args) "Perform a `query-replace' in marked buffers." (:interactive - (query-replace-read-args "Query replace" t) + (query-replace-read-args "Query replace" t t) :opstring "replaced in" :complex t :modifier-p :maybe) @@ -338,7 +338,7 @@ (define-ibuffer-op query-replace-regexp (&rest args) "Perform a `query-replace-regexp' in marked buffers." (:interactive - (query-replace-read-args "Query replace regexp" t) + (query-replace-read-args "Query replace regexp" t t) :opstring "replaced in" :complex t :modifier-p :maybe)