aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2003-02-18 11:02:25 +0000
committerJuanma Barranquero2003-02-18 11:02:25 +0000
commit6cae7b73a3b8a167027bd0785a53bd39e58973d7 (patch)
treebbaf72995092b26c1a17acffc03675e10eafd865
parent99edd7ed8d6ee2da15039afad21b8a712525efcb (diff)
downloademacs-6cae7b73a3b8a167027bd0785a53bd39e58973d7.tar.gz
emacs-6cae7b73a3b8a167027bd0785a53bd39e58973d7.zip
(Helper-help-scroller): Fix character constant.
-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 574694654bf..0e02f05955f 100644
--- a/lisp/emacs-lisp/helper.el
+++ b/lisp/emacs-lisp/helper.el
@@ -77,7 +77,7 @@
77 "Type anything to %s")) 77 "Type anything to %s"))
78 blurb) 78 blurb)
79 (setq continue (read-char)) 79 (setq continue (read-char))
80 (cond ((and (memq continue '(?\ ?\C-v)) (< state 2)) 80 (cond ((and (memq continue '(?\s ?\C-v)) (< state 2))
81 (scroll-up)) 81 (scroll-up))
82 ((= continue ?\C-l) 82 ((= continue ?\C-l)
83 (recenter)) 83 (recenter))