diff options
| author | Stefan Kangas | 2020-11-20 17:25:31 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2020-11-20 17:25:31 +0100 |
| commit | 86d87d24310f087fef99fa959156b024626bf2d2 (patch) | |
| tree | 97f09faf322414ff3bd515a9e84c56ed673f64a4 | |
| parent | 966052cb5935208e14f29e297dd93d4ce640b005 (diff) | |
| download | emacs-86d87d24310f087fef99fa959156b024626bf2d2.tar.gz emacs-86d87d24310f087fef99fa959156b024626bf2d2.zip | |
Don't quote lambda in idlwave.el
* lisp/progmodes/idlwave.el (idlwave-keyword-abbrev): Don't quote
lambda.
| -rw-r--r-- | lisp/progmodes/idlwave.el | 4 |
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.") | |||
| 1355 | 1355 | ||
| 1356 | (defmacro idlwave-keyword-abbrev (&rest args) | 1356 | (defmacro idlwave-keyword-abbrev (&rest args) |
| 1357 | "Creates a function for abbrev hooks to call `idlwave-check-abbrev' with args." | 1357 | "Creates a function for abbrev hooks to call `idlwave-check-abbrev' with args." |
| 1358 | `(quote (lambda () | 1358 | `(lambda () |
| 1359 | ,(append '(idlwave-check-abbrev) args)))) | 1359 | ,(append '(idlwave-check-abbrev) args))) |
| 1360 | 1360 | ||
| 1361 | ;; If I take the time I can replace idlwave-keyword-abbrev with | 1361 | ;; If I take the time I can replace idlwave-keyword-abbrev with |
| 1362 | ;; idlwave-code-abbrev and remove the quoted abbrev check from | 1362 | ;; idlwave-code-abbrev and remove the quoted abbrev check from |