1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Fix typo in idlwave

* lisp/progmodes/idlwave.el (idlwave-keyword-abbrev): Fix typo
(bug#50638).
This commit is contained in:
Manuel Giraud 2021-09-17 16:34:05 +02:00 committed by Lars Ingebrigtsen
parent 894ea5f66f
commit f29abc3db6

View file

@ -1365,7 +1365,7 @@ Normally a space.")
(defun idlwave-keyword-abbrev (&rest args)
"Create a function for abbrev hooks to call `idlwave-modify-abbrev' with args."
(lambda () (append #'idlwave-modify-abbrev args)))
(lambda () (apply #'idlwave-modify-abbrev args)))
(autoload 'idlwave-shell "idlw-shell"
"Run an inferior IDL, with I/O through buffer `(idlwave-shell-buffer)'." t)