From 0f1016635476a3feae1c4702fcf08fced5df774e Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 16 Sep 2006 10:45:38 +0000 Subject: [PATCH] (describe-prefix-bindings): Use let, not let*. --- lisp/ChangeLog | 4 ++++ lisp/help.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 96e362a243c..c4342057a6f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-09-16 Eli Zaretskii + + * help.el (describe-prefix-bindings): Use let, not let*. + 2006-09-16 Ken Manheimer * allout.el (allout-regexp, allout-line-boundary-regexp) 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))) -- 2.39.2