]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix search argument in ‘lisp--el-match-keyword’ (Bug#21492) (Bug#21493)
authorDaniel McClanahan <danieldmcclanahan@gmail.com>
Wed, 16 Sep 2015 07:02:35 +0000 (09:02 +0200)
committerMartin Rudalics <rudalics@gmx.at>
Wed, 16 Sep 2015 07:02:35 +0000 (09:02 +0200)
* lisp/emacs-lisp/lisp-mode.el (lisp--el-match-keyword): Fix
search argument.  (Bug#21492) (Bug#21493)

Copyright-paperwork-exempt: yes

lisp/emacs-lisp/lisp-mode.el

index 56c2966656c82a2f7c0264b447a4e11488997e3d..fed91b34a8858afaaa50071e52e25061eae348b3 100644 (file)
   ;; 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)