diff options
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 56c2966656c..fed91b34a88 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el | |||
| @@ -224,7 +224,8 @@ | |||
| 224 | ;; FIXME: Move to elisp-mode.el. | 224 | ;; FIXME: Move to elisp-mode.el. |
| 225 | (catch 'found | 225 | (catch 'found |
| 226 | (while (re-search-forward | 226 | (while (re-search-forward |
| 227 | (eval-when-compile "(\\(" lisp-mode-symbol-regexp "\\)\\_>") | 227 | (eval-when-compile |
| 228 | (concat "(\\(" lisp-mode-symbol-regexp "\\)\\_>")) | ||
| 228 | limit t) | 229 | limit t) |
| 229 | (let ((sym (intern-soft (match-string 1)))) | 230 | (let ((sym (intern-soft (match-string 1)))) |
| 230 | (when (or (special-form-p sym) | 231 | (when (or (special-form-p sym) |