Don't quote lambda in idlwave.el
* lisp/progmodes/idlwave.el (idlwave-keyword-abbrev): Don't quote lambda.
This commit is contained in:
parent
966052cb59
commit
86d87d2431
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue