1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-27 19:31:38 +00:00

* emacs-lisp/helper.el (Helper-help-scroller): Don't signal error

on non-char events.
This commit is contained in:
Chong Yidong 2006-07-09 15:24:22 +00:00
parent 47f9708416
commit 4b6b279f02
2 changed files with 6 additions and 1 deletions

View 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):

View 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)