diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/help.el | 2 |
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 @@ +2006-09-16 Eli Zaretskii <eliz@gnu.org> + + * help.el (describe-prefix-bindings): Use let, not let*. + 2006-09-16 Ken Manheimer <ken.manheimer@gmail.com> * 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." The prefix described consists of all but the last event of the key sequence that ran this command." (interactive) - (let* ((key (this-command-keys))) + (let ((key (this-command-keys))) (describe-bindings (if (stringp key) (substring key 0 (1- (length key))) |
