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:
parent
f21168f053
commit
0f10166354
2 changed files with 5 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue