aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorEli Zaretskii2006-09-16 10:45:38 +0000
committerEli Zaretskii2006-09-16 10:45:38 +0000
commit0f1016635476a3feae1c4702fcf08fced5df774e (patch)
tree1b08f1744796b084572662946f995d30846c89f1 /lisp
parentf21168f05396af58f670d94fdbb166d84417a420 (diff)
downloademacs-0f1016635476a3feae1c4702fcf08fced5df774e.tar.gz
emacs-0f1016635476a3feae1c4702fcf08fced5df774e.zip
(describe-prefix-bindings): Use let, not let*.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/help.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 96e362a243c..c4342057a6f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12006-09-16 Eli Zaretskii <eliz@gnu.org>
2
3 * help.el (describe-prefix-bindings): Use let, not let*.
4
12006-09-16 Ken Manheimer <ken.manheimer@gmail.com> 52006-09-16 Ken Manheimer <ken.manheimer@gmail.com>
2 6
3 * allout.el (allout-regexp, allout-line-boundary-regexp) 7 * allout.el (allout-regexp, allout-line-boundary-regexp)
diff --git a/lisp/help.el b/lisp/help.el
index 073bdd3c81c..bc101410bbd 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -309,7 +309,7 @@ If that doesn't give a function, return nil."
309The prefix described consists of all but the last event 309The prefix described consists of all but the last event
310of the key sequence that ran this command." 310of the key sequence that ran this command."
311 (interactive) 311 (interactive)
312 (let* ((key (this-command-keys))) 312 (let ((key (this-command-keys)))
313 (describe-bindings 313 (describe-bindings
314 (if (stringp key) 314 (if (stringp key)
315 (substring key 0 (1- (length key))) 315 (substring key 0 (1- (length key)))