]> git.eshelyaron.com Git - emacs.git/commitdiff
(describe-prefix-bindings): Use let, not let*.
authorEli Zaretskii <eliz@gnu.org>
Sat, 16 Sep 2006 10:45:38 +0000 (10:45 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 16 Sep 2006 10:45:38 +0000 (10:45 +0000)
lisp/ChangeLog
lisp/help.el

index 96e362a243c7a97b77702b1d61dbf7ae4d1f1c76..c4342057a6f4b4e438c1419050d7316bbd64b5c6 100644 (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)
index 073bdd3c81cab3917ed9a4b67e0cc021bb6e956d..bc101410bbdf2369927870ea511e73c1b3d1ecbf 100644 (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)))