summaryrefslogtreecommitdiff
path: root/lisp/help.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2006-09-16 10:45:38 +0000
committerEli Zaretskii <eliz@gnu.org>2006-09-16 10:45:38 +0000
commit0f1016635476a3feae1c4702fcf08fced5df774e (patch)
tree1b08f1744796b084572662946f995d30846c89f1 /lisp/help.el
parentf21168f05396af58f670d94fdbb166d84417a420 (diff)
downloademacs-0f1016635476a3feae1c4702fcf08fced5df774e.tar.gz
(describe-prefix-bindings): Use let, not let*.
Diffstat (limited to 'lisp/help.el')
-rw-r--r--lisp/help.el2
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)))