diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/help.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 96e362a243c..c4342057a6f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-09-16 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * help.el (describe-prefix-bindings): Use let, not let*. | ||
| 4 | |||
| 1 | 2006-09-16 Ken Manheimer <ken.manheimer@gmail.com> | 5 | 2006-09-16 Ken Manheimer <ken.manheimer@gmail.com> |
| 2 | 6 | ||
| 3 | * allout.el (allout-regexp, allout-line-boundary-regexp) | 7 | * 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." | |||
| 309 | The prefix described consists of all but the last event | 309 | The prefix described consists of all but the last event |
| 310 | of the key sequence that ran this command." | 310 | of the key sequence that ran this command." |
| 311 | (interactive) | 311 | (interactive) |
| 312 | (let* ((key (this-command-keys))) | 312 | (let ((key (this-command-keys))) |
| 313 | (describe-bindings | 313 | (describe-bindings |
| 314 | (if (stringp key) | 314 | (if (stringp key) |
| 315 | (substring key 0 (1- (length key))) | 315 | (substring key 0 (1- (length key))) |