* emacs-lisp/helper.el (Helper-help-scroller): Don't signal error
authorChong Yidong <cyd@stupidchicken.com>
Sun, 9 Jul 2006 15:24:22 +0000 (15:24 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 9 Jul 2006 15:24:22 +0000 (15:24 +0000)
on non-char events.

lisp/ChangeLog
lisp/emacs-lisp/helper.el

index bae1c4e..0760219 100644 (file)
@@ -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):
index 3b614be..92eb86c 100644 (file)
@@ -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)