aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp/helper.el
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2003-02-18 11:02:25 +0000
committerJuanma Barranquero <[email protected]>2003-02-18 11:02:25 +0000
commit6cae7b73a3b8a167027bd0785a53bd39e58973d7 (patch)
treebbaf72995092b26c1a17acffc03675e10eafd865 /lisp/emacs-lisp/helper.el
parent99edd7ed8d6ee2da15039afad21b8a712525efcb (diff)
(Helper-help-scroller): Fix character constant.
Diffstat (limited to 'lisp/emacs-lisp/helper.el')
-rw-r--r--lisp/emacs-lisp/helper.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/helper.el b/lisp/emacs-lisp/helper.el
index 574694654b..0e02f05955 100644
--- a/lisp/emacs-lisp/helper.el
+++ b/lisp/emacs-lisp/helper.el
@@ -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))