emacs-diffs
[Top][All Lists]
Advanced

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

master 86d87d2: Don't quote lambda in idlwave.el


From: Stefan Kangas
Subject: master 86d87d2: Don't quote lambda in idlwave.el
Date: Fri, 20 Nov 2020 11:25:57 -0500 (EST)

branch: master
commit 86d87d24310f087fef99fa959156b024626bf2d2
Author: Stefan Kangas <stefan@marxist.se>
Commit: Stefan Kangas <stefan@marxist.se>

    Don't quote lambda in idlwave.el
    
    * lisp/progmodes/idlwave.el (idlwave-keyword-abbrev): Don't quote
    lambda.
---
 lisp/progmodes/idlwave.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el
index 44bdd91..876c38d 100644
--- a/lisp/progmodes/idlwave.el
+++ b/lisp/progmodes/idlwave.el
@@ -1355,8 +1355,8 @@ Normally a space.")
 
 (defmacro idlwave-keyword-abbrev (&rest args)
   "Creates a function for abbrev hooks to call `idlwave-check-abbrev' with 
args."
-  `(quote (lambda ()
-           ,(append '(idlwave-check-abbrev) args))))
+  `(lambda ()
+     ,(append '(idlwave-check-abbrev) args)))
 
 ;; If I take the time I can replace idlwave-keyword-abbrev with
 ;; idlwave-code-abbrev and remove the quoted abbrev check from



reply via email to

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