# HG changeset patch # User Chong Yidong # Date 1152458662 0 # Node ID ce0614025964ec3d2ec07656d021daacfccfb199 # Parent fcbb34640a4438fd0f6a238f6111d45afaec2c0c * emacs-lisp/helper.el (Helper-help-scroller): Don't signal error on non-char events. diff -r fcbb34640a44 -r ce0614025964 lisp/ChangeLog --- 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 + + * emacs-lisp/helper.el (Helper-help-scroller): Don't signal error + on non-char events. + 2006-07-09 Romain Francoise * progmodes/compile.el (compilation-mode-font-lock-keywords): diff -r fcbb34640a44 -r ce0614025964 lisp/emacs-lisp/helper.el --- 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)