diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2003-02-18 10:56:26 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2003-02-18 10:56:26 +0000 |
commit | f4ae0b8bbbacd5a0ec00b5be1bc0cd110e71db1a (patch) | |
tree | 960f15f35df33e691ff7ddef2b35b279494b5f1c /lisp/help-macro.el | |
parent | 1f7fa69bd95b4d0048c363dea88f4f65eecebab2 (diff) | |
download | emacs-f4ae0b8bbbacd5a0ec00b5be1bc0cd110e71db1a.tar.gz |
(make-help-screen): Fix character constant.
Diffstat (limited to 'lisp/help-macro.el')
-rw-r--r-- | lisp/help-macro.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help-macro.el b/lisp/help-macro.el index 19add581969..567b2c1a2f1 100644 --- a/lisp/help-macro.el +++ b/lisp/help-macro.el @@ -143,7 +143,7 @@ and then returns." (help-mode) (goto-char (point-min)) (while (or (memq char (append help-event-list - (cons help-char '(?? ?\C-v ?\ ?\177 delete backspace vertical-scroll-bar ?\M-v)))) + (cons help-char '(?? ?\C-v ?\s ?\177 delete backspace vertical-scroll-bar ?\M-v)))) (eq (car-safe char) 'switch-frame) (equal key "\M-v")) (condition-case nil |