Mercurial > emacs
changeset 72920:380408390d43
(describe-prefix-bindings): Use let, not let*.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 16 Sep 2006 10:43:39 +0000 |
parents | 6096463ca253 |
children | 38d3708f31ff |
files | lisp/help.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/help.el Sat Sep 16 10:35:47 2006 +0000 +++ b/lisp/help.el Sat Sep 16 10:43:39 2006 +0000 @@ -309,7 +309,7 @@ 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)))