1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-27 10:54:40 +00:00

(perform-replace): Obey minibuffer-auto-raise.

This commit is contained in:
Richard M. Stallman 1996-12-07 21:23:37 +00:00
parent 1d2517f2ed
commit 1c1dadabf3

View File

@ -513,6 +513,8 @@ just as `query-replace' does. Instead, write a simple loop like this:
(replace-match \"foobar\" nil nil))
which will run faster and probably do exactly what you want."
(or map (setq map query-replace-map))
(and query-flag minibuffer-auto-raise
(raise-frame (window-frame (minibuffer-window))))
(let ((nocasify (not (and case-fold-search case-replace
(string-equal from-string
(downcase from-string)))))