diff options
author | Eli Zaretskii <eliz@gnu.org> | 2022-10-15 14:43:21 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-10-15 14:43:21 +0300 |
commit | 4aeb80ccecd0dc3f3b3f567779632a0f23476a09 (patch) | |
tree | bc046a3620634afd926808dd66d57a5d323d6f80 /lisp | |
parent | 08eb639df8d24ef77df896a23972269b676311b7 (diff) | |
download | emacs-4aeb80ccecd0dc3f3b3f567779632a0f23476a09.tar.gz emacs-4aeb80ccecd0dc3f3b3f567779632a0f23476a09.tar.bz2 emacs-4aeb80ccecd0dc3f3b3f567779632a0f23476a09.zip |
; Improve message text in xref.el
* lisp/progmodes/xref.el (xref--query-replace-1): Improve text of
user-error.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/progmodes/xref.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index afb45099139..bb36688ef85 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el @@ -898,7 +898,7 @@ ITEMS is an xref item which " ; FIXME: Expand documentation. (perform-replace from to t t nil nil multi-query-replace-map))) (unless did-it-once (user-error - "Cannot use subset of matches of identifier for global renaming")) + "Cannot perform global renaming of symbols using find-definition results")) (when (and continue (not buf-pairs)) (message "All results processed")))) |