summaryrefslogtreecommitdiff
path: root/lisp/progmodes/idlwave.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2020-11-20 17:25:31 +0100
committerStefan Kangas <stefan@marxist.se>2020-11-20 17:25:31 +0100
commit86d87d24310f087fef99fa959156b024626bf2d2 (patch)
tree97f09faf322414ff3bd515a9e84c56ed673f64a4 /lisp/progmodes/idlwave.el
parent966052cb5935208e14f29e297dd93d4ce640b005 (diff)
downloademacs-86d87d24310f087fef99fa959156b024626bf2d2.tar.gz
Don't quote lambda in idlwave.el
* lisp/progmodes/idlwave.el (idlwave-keyword-abbrev): Don't quote lambda.
Diffstat (limited to 'lisp/progmodes/idlwave.el')
-rw-r--r--lisp/progmodes/idlwave.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el
index 44bdd918d6c..876c38da7e7 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