summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2006-11-27 14:05:58 +0000
committerJuanma Barranquero <lekktu@gmail.com>2006-11-27 14:05:58 +0000
commitb754307b9153d7429ae6380034d132d8da7ff024 (patch)
tree33296233108f2a6b79ef417cf99ce90e48ef5225
parent89226f3247b6bb364e9d08e17a1ebbb2962f3796 (diff)
downloademacs-b754307b9153d7429ae6380034d132d8da7ff024.tar.gz
emacs-b754307b9153d7429ae6380034d132d8da7ff024.tar.bz2
emacs-b754307b9153d7429ae6380034d132d8da7ff024.zip
(momentary-string-display): "?\ " -> "?\s".
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 5f9f84eb61c..f3cf45144a3 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1892,7 +1892,7 @@ EXIT-CHAR it is swallowed; otherwise it is then available as
input (as a command if nothing else).
Display MESSAGE (optional fourth arg) in the echo area.
If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there."
- (or exit-char (setq exit-char ?\ ))
+ (or exit-char (setq exit-char ?\s))
(let ((inhibit-read-only t)
;; Don't modify the undo list at all.
(buffer-undo-list t)