diff options
author | Noam Postavsky <npostavs@gmail.com> | 2019-12-13 06:36:02 -0500 |
---|---|---|
committer | Noam Postavsky <npostavs@gmail.com> | 2019-12-13 06:41:05 -0500 |
commit | 966abdba09214813a86979f22bfb08475a73f10c (patch) | |
tree | f48c52b9796f38fa374a392d6f2021e9bcb23442 /lisp/emacs-lisp/lisp-mode.el | |
parent | dd3f2130cf2977cff79101e72cff0b433df1c1c6 (diff) | |
download | emacs-966abdba09214813a86979f22bfb08475a73f10c.tar.gz |
Add prefix to help.el uni-confusable* vars
* lisp/help.el (help-uni-confusables, help-uni-confusables-regexp):
Rename from uni-confusable and uni-confusables-regexp, respectively.
(help-uni-confusable-suggestions): Use ngettext. Use new variable
name.
* lisp/emacs-lisp/lisp-mode.el (lisp--match-confusable-symbol-character):
Use new variable name.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 56f8ef63682..1da2b794317 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -284,7 +284,7 @@ This will generate compile-time constants from BINDINGS." ;; Match a confusable character within a Lisp symbol. (catch 'matched (while t - (if (re-search-forward uni-confusables-regexp limit t) + (if (re-search-forward help-uni-confusables-regexp limit t) ;; Skip confusables which are backslash escaped, or inside ;; strings or comments. (save-match-data |