Fix search argument in ‘lisp--el-match-keyword’ (Bug#21492) (Bug#21493)
* lisp/emacs-lisp/lisp-mode.el (lisp--el-match-keyword): Fix search argument. (Bug#21492) (Bug#21493) Copyright-paperwork-exempt: yes
This commit is contained in:
parent
8db08dfe48
commit
55a9b2e620
1 changed files with 2 additions and 1 deletions
|
@ -224,7 +224,8 @@
|
|||
;; FIXME: Move to elisp-mode.el.
|
||||
(catch 'found
|
||||
(while (re-search-forward
|
||||
(eval-when-compile "(\\(" lisp-mode-symbol-regexp "\\)\\_>")
|
||||
(eval-when-compile
|
||||
(concat "(\\(" lisp-mode-symbol-regexp "\\)\\_>"))
|
||||
limit t)
|
||||
(let ((sym (intern-soft (match-string 1))))
|
||||
(when (or (special-form-p sym)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue