changeset 2025:3f02dc3e10a8

Fix bug in previous change.
author Richard M. Stallman <rms@gnu.org>
date Sat, 06 Mar 1993 06:03:19 +0000
parents 357941278904
children 3514a9bf50c5
files lisp/comint.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/comint.el	Sat Mar 06 06:01:29 1993 +0000
+++ b/lisp/comint.el	Sat Mar 06 06:03:19 1993 +0000
@@ -1094,7 +1094,7 @@
 	     (sit-for 0)
 	     (message "Hit space to flush")
 	     (let ((ch (read-event)))
-	       (if (= ch ?\ )
+	       (if (eq ch ?\ )
 		   (set-window-configuration conf)
 		 (setq unread-command-events (list ch)))))))))