diff options
author | Glenn Morris <rgm@gnu.org> | 2010-06-18 19:27:57 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-06-18 19:27:57 -0700 |
commit | 4111f0c731623edc1978f861ed5f25614c3ae2a2 (patch) | |
tree | 9272ffa014f64db2814804f399649eb811aec8ee /lisp/progmodes/idlwave.el | |
parent | b8add347beee7e7ef6b81f9d30ae4e6c46c56930 (diff) | |
download | emacs-4111f0c731623edc1978f861ed5f25614c3ae2a2.tar.gz emacs-4111f0c731623edc1978f861ed5f25614c3ae2a2.tar.bz2 emacs-4111f0c731623edc1978f861ed5f25614c3ae2a2.zip |
Close bug#6450.
* lisp/progmodes/idlwave.el (idlwave-action-and-binding):
Fix typo in 2009-12-03 change.
Diffstat (limited to 'lisp/progmodes/idlwave.el')
-rw-r--r-- | lisp/progmodes/idlwave.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el index e6228286a19..b2858f1479d 100644 --- a/lisp/progmodes/idlwave.el +++ b/lisp/progmodes/idlwave.el @@ -1601,7 +1601,7 @@ Capitalize system variables - action only `(lambda () (interactive) (self-insert-command 1) - ,@(if (listp cmd) cmd (list cmd)))))) + ,(if (listp cmd) cmd (list cmd)))))) ;; Set action and key bindings. ;; See description of the function `idlwave-action-and-binding'. |