diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-03-06 06:10:05 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-03-06 06:10:05 +0000 |
commit | 8330a77c79dabac21d0f762ba185543e92c44f8b (patch) | |
tree | 4fc8052da6b2509cbe97e96369b7d65ea47bf041 /lisp/emerge.el | |
parent | 2a68bf6048a992753e51df3188c9166e15e47a3a (diff) | |
download | emacs-8330a77c79dabac21d0f762ba185543e92c44f8b.tar.gz |
(emerge-show-file-name): Handle any kind of event.
Diffstat (limited to 'lisp/emerge.el')
-rw-r--r-- | lisp/emerge.el | 4 |
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. |