aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/comint.el4
1 files 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."
1093 (display-completion-list completions)) 1093 (display-completion-list completions))
1094 (sit-for 0) 1094 (sit-for 0)
1095 (message "Hit space to flush") 1095 (message "Hit space to flush")
1096 (let ((ch (read-char))) 1096 (let ((ch (read-event)))
1097 (if (= ch ?\ ) 1097 (if (= ch ?\ )
1098 (set-window-configuration conf) 1098 (set-window-configuration conf)
1099 (setq unread-command-events (list ch))))))))) 1099 (setq unread-command-events (list ch)))))))))
1100 1100
1101;;; Converting process modes to use comint mode 1101;;; Converting process modes to use comint mode
1102;;; =========================================================================== 1102;;; ===========================================================================