mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 22:41:06 -08:00
Say 'All results processed' at the end
* lisp/progmodes/xref.el (xref--query-replace-1): Say 'All results processed' at the end if the user hadn't cancelled the process (bug#23284).
This commit is contained in:
parent
4ffec91aa1
commit
cd27f7396b
1 changed files with 3 additions and 1 deletions
|
|
@ -624,7 +624,9 @@ references displayed in the current *xref* buffer."
|
|||
(setq pairs (cdr buf-pairs))
|
||||
(setq continue
|
||||
(perform-replace from to t t nil nil multi-query-replace-map)))
|
||||
(unless did-it-once (user-error "No suitable matches here"))))
|
||||
(unless did-it-once (user-error "No suitable matches here"))
|
||||
(when (and continue (not buf-pairs))
|
||||
(message "All results processed"))))
|
||||
|
||||
(defvar xref--xref-buffer-mode-map
|
||||
(let ((map (make-sparse-keymap)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue