aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2006-11-27 13:49:57 +0000
committerJuanma Barranquero2006-11-27 13:49:57 +0000
commit3d5b307e2cc58f41e86006e76c663563e057f93f (patch)
tree25509c9b8f867698f2a99e693c4942e7d97fb468
parent6bd94f0bfb330ed63f4aa6231bdb0f3c28d99dc7 (diff)
downloademacs-3d5b307e2cc58f41e86006e76c663563e057f93f.tar.gz
emacs-3d5b307e2cc58f41e86006e76c663563e057f93f.zip
(electric-help-command-loop): "?\ " -> "?\s".
-rw-r--r--lisp/ehelp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ehelp.el b/lisp/ehelp.el
index 376f31f1ca5..39f08d51f18 100644
--- a/lisp/ehelp.el
+++ b/lisp/ehelp.el
@@ -197,7 +197,7 @@ BUFFER is put into `default-major-mode' (or `fundamental-mode') when we exit."
197 (if (pos-visible-in-window-p (point-max)) 197 (if (pos-visible-in-window-p (point-max))
198 (progn (message "%s" (substitute-command-keys "<<< Press Space to bury the help buffer, Press \\[electric-help-retain] to retain it >>>")) 198 (progn (message "%s" (substitute-command-keys "<<< Press Space to bury the help buffer, Press \\[electric-help-retain] to retain it >>>"))
199 (if (equal (setq unread-command-events (list (read-event))) 199 (if (equal (setq unread-command-events (list (read-event)))
200 '(?\ )) 200 '(?\s))
201 (progn (setq unread-command-events nil) 201 (progn (setq unread-command-events nil)
202 (throw 'exit t))))) 202 (throw 'exit t)))))
203 (let (up down both neither 203 (let (up down both neither