changeset 49843:e77b1b1735f4

(Helper-help-scroller): Fix character constant.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 18 Feb 2003 11:02:25 +0000
parents c785a7ac61c7
children 48965175c443
files lisp/emacs-lisp/helper.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/helper.el	Tue Feb 18 11:01:34 2003 +0000
+++ b/lisp/emacs-lisp/helper.el	Tue Feb 18 11:02:25 2003 +0000
@@ -77,7 +77,7 @@
 		   "Type anything to %s"))
 	    blurb)
 	  (setq continue (read-char))
-	  (cond ((and (memq continue '(?\ ?\C-v)) (< state 2))
+	  (cond ((and (memq continue '(?\s ?\C-v)) (< state 2))
 		 (scroll-up))
 		((= continue ?\C-l)
 		 (recenter))