From bdc2ae8d60d0b74ee0f1989e5719e207fd7679aa Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 6 Mar 1993 05:56:08 +0000 Subject: [PATCH] (comint-dynamic-list-completions): Handle any event when flushing the display. --- lisp/comint.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/comint.el b/lisp/comint.el index 00b96185c22..a35ae10fd02 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -1093,10 +1093,10 @@ it just adds completion characters to the end of the filename." (display-completion-list completions)) (sit-for 0) (message "Hit space to flush") - (let ((ch (read-char))) + (let ((ch (read-event))) (if (= ch ?\ ) (set-window-configuration conf) - (setq unread-command-events (list ch))))))))) + (setq unread-command-events (list ch))))))))) ;;; Converting process modes to use comint mode ;;; ===========================================================================