diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2006-11-27 14:05:58 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2006-11-27 14:05:58 +0000 |
commit | f6f8d51680d036e49b90721d14d9093f7786e047 (patch) | |
tree | 0e3dbd17c9c0addb65d4426b09d18c641a516e2c /lisp/subr.el | |
parent | cb7fd4afae26b315b51908c8258edb41b2ba2c6e (diff) | |
download | emacs-f6f8d51680d036e49b90721d14d9093f7786e047.tar.gz |
(momentary-string-display): "?\ " -> "?\s".
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 2 |
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) |