1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

(describe-prefix-bindings): Use let, not let*.

This commit is contained in:
Eli Zaretskii 2006-09-16 10:45:38 +00:00
parent f21168f053
commit 0f10166354
2 changed files with 5 additions and 1 deletions

View file

@ -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)

View file

@ -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)))