aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-06-18 19:27:57 -0700
committerGlenn Morris2010-06-18 19:27:57 -0700
commit4111f0c731623edc1978f861ed5f25614c3ae2a2 (patch)
tree9272ffa014f64db2814804f399649eb811aec8ee
parentb8add347beee7e7ef6b81f9d30ae4e6c46c56930 (diff)
downloademacs-4111f0c731623edc1978f861ed5f25614c3ae2a2.tar.gz
emacs-4111f0c731623edc1978f861ed5f25614c3ae2a2.zip
Close bug#6450.
* lisp/progmodes/idlwave.el (idlwave-action-and-binding): Fix typo in 2009-12-03 change.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/idlwave.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 93fd4cd8c54..02b389b77d4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12010-06-19 Glenn Morris <rgm@gnu.org>
2
3 * progmodes/idlwave.el (idlwave-action-and-binding):
4 Fix typo in 2009-12-03 change. (Bug#6450)
5
12010-06-17 Stefan Monnier <monnier@iro.umontreal.ca> 62010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * subr.el (read-quoted-char): Fix up last change (bug#6290). 8 * subr.el (read-quoted-char): Fix up last change (bug#6290).
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
1601 `(lambda () 1601 `(lambda ()
1602 (interactive) 1602 (interactive)
1603 (self-insert-command 1) 1603 (self-insert-command 1)
1604 ,@(if (listp cmd) cmd (list cmd)))))) 1604 ,(if (listp cmd) cmd (list cmd))))))
1605 1605
1606;; Set action and key bindings. 1606;; Set action and key bindings.
1607;; See description of the function `idlwave-action-and-binding'. 1607;; See description of the function `idlwave-action-and-binding'.