Mercurial > emacs
changeset 71743:ce0614025964
* emacs-lisp/helper.el (Helper-help-scroller): Don't signal error
on non-char events.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sun, 09 Jul 2006 15:24:22 +0000 |
parents | fcbb34640a44 |
children | c99740f338f8 |
files | lisp/ChangeLog lisp/emacs-lisp/helper.el |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sun Jul 09 15:17:05 2006 +0000 +++ b/lisp/ChangeLog Sun Jul 09 15:24:22 2006 +0000 @@ -1,3 +1,8 @@ +2006-07-09 Chong Yidong <cyd@stupidchicken.com> + + * emacs-lisp/helper.el (Helper-help-scroller): Don't signal error + on non-char events. + 2006-07-09 Romain Francoise <romain@orebokech.com> * progmodes/compile.el (compilation-mode-font-lock-keywords):
--- a/lisp/emacs-lisp/helper.el Sun Jul 09 15:17:05 2006 +0000 +++ b/lisp/emacs-lisp/helper.el Sun Jul 09 15:24:22 2006 +0000 @@ -77,7 +77,7 @@ "Delete scrolls back. Other keys %s" "Type anything to %s")) blurb) - (setq continue (read-char)) + (setq continue (read-event)) (cond ((and (memq continue '(?\s ?\C-v)) (< state 2)) (scroll-up)) ((= continue ?\C-l)