diff options
| author | Eli Zaretskii <eliz@gnu.org> | 2006-09-16 10:45:38 +0000 |
|---|---|---|
| committer | Eli Zaretskii <eliz@gnu.org> | 2006-09-16 10:45:38 +0000 |
| commit | 0f1016635476a3feae1c4702fcf08fced5df774e (patch) | |
| tree | 1b08f1744796b084572662946f995d30846c89f1 /lisp/help.el | |
| parent | f21168f05396af58f670d94fdbb166d84417a420 (diff) | |
| download | emacs-0f1016635476a3feae1c4702fcf08fced5df774e.tar.gz | |
(describe-prefix-bindings): Use let, not let*.
Diffstat (limited to 'lisp/help.el')
| -rw-r--r-- | lisp/help.el | 2 |
1 files changed, 1 insertions, 1 deletions
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))) |
