diff options
| author | Eli Zaretskii | 2022-10-15 14:43:21 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2022-10-15 14:43:21 +0300 |
| commit | 4aeb80ccecd0dc3f3b3f567779632a0f23476a09 (patch) | |
| tree | bc046a3620634afd926808dd66d57a5d323d6f80 | |
| parent | 08eb639df8d24ef77df896a23972269b676311b7 (diff) | |
| download | emacs-4aeb80ccecd0dc3f3b3f567779632a0f23476a09.tar.gz emacs-4aeb80ccecd0dc3f3b3f567779632a0f23476a09.zip | |
; Improve message text in xref.el
* lisp/progmodes/xref.el (xref--query-replace-1): Improve text of
user-error.
| -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. | |||
| 898 | (perform-replace from to t t nil nil multi-query-replace-map))) | 898 | (perform-replace from to t t nil nil multi-query-replace-map))) |
| 899 | (unless did-it-once | 899 | (unless did-it-once |
| 900 | (user-error | 900 | (user-error |
| 901 | "Cannot use subset of matches of identifier for global renaming")) | 901 | "Cannot perform global renaming of symbols using find-definition results")) |
| 902 | (when (and continue (not buf-pairs)) | 902 | (when (and continue (not buf-pairs)) |
| 903 | (message "All results processed")))) | 903 | (message "All results processed")))) |
| 904 | 904 | ||