emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 55a9b2e: Fix search argument in ‘lisp--el-match-ke


From: Martin Rudalics
Subject: [Emacs-diffs] master 55a9b2e: Fix search argument in ‘lisp--el-match-keyword’ (Bug#21492) (Bug#21493)
Date: Wed, 16 Sep 2015 07:03:35 +0000

branch: master
commit 55a9b2e620f4236bb491b6e1bf54c382510adb87
Author: Daniel McClanahan <address@hidden>
Commit: Martin Rudalics <address@hidden>

    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
---
 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 56c2966..fed91b3 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]