summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-03-06 06:10:05 +0000
committerRichard M. Stallman <rms@gnu.org>1993-03-06 06:10:05 +0000
commitbfd72d065f00149129866d90a774f0e58d64f6d5 (patch)
tree3a6f82b0e4f0ee4cee40a7a53a9ae9ec4335389d
parentd654e8ce599567b96d4e04f6b12a6353dacfd00f (diff)
downloademacs-bfd72d065f00149129866d90a774f0e58d64f6d5.tar.gz
(emerge-show-file-name): Handle any kind of event.
-rw-r--r--lisp/emerge.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emerge.el b/lisp/emerge.el
index 2309c6db93a..09c29fbb680 100644
--- a/lisp/emerge.el
+++ b/lisp/emerge.el
@@ -2908,8 +2908,8 @@ SPC, it is ignored; if it is anything else, it is processed as a command."
(while (and (not (pos-visible-in-window-p))
(> (1- (frame-height)) (window-height)))
(enlarge-window 1))
- (let ((c (read-char)))
- (if (/= c 32)
+ (let ((c (read-event)))
+ (if (not (eq c 32))
(setq unread-command-events (list c)))))))))
;; Improved auto-save file names.