diff options
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 |