]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typo in idlwave
authorManuel Giraud <manuel@ledu-giraud.fr>
Fri, 17 Sep 2021 14:34:05 +0000 (16:34 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 17 Sep 2021 14:34:05 +0000 (16:34 +0200)
* lisp/progmodes/idlwave.el (idlwave-keyword-abbrev): Fix typo
(bug#50638).

lisp/progmodes/idlwave.el

index 374876d5b4c7fa9cbb84a85bba2c39457b4a061f..e95abd863e9ee79f8f9e52c3c0fb403eac31ac72 100644 (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)