aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/term.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/term.el b/lisp/term.el
index 3295c87da14..122953af124 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -405,7 +405,7 @@
405(require 'ehelp) 405(require 'ehelp)
406 406
407(defgroup term nil 407(defgroup term nil
408 "General command interpreter in a window" 408 "General command interpreter in a window."
409 :group 'processes 409 :group 'processes
410 :group 'unix) 410 :group 'unix)
411 411
@@ -1574,7 +1574,7 @@ See also `term-read-input-ring'."
1574 (sit-for 0) 1574 (sit-for 0)
1575 (message "Hit space to flush") 1575 (message "Hit space to flush")
1576 (let ((ch (read-event))) 1576 (let ((ch (read-event)))
1577 (if (eq ch ?\ ) 1577 (if (eq ch ?\s)
1578 (set-window-configuration conf) 1578 (set-window-configuration conf)
1579 (setq unread-command-events (list ch))))))) 1579 (setq unread-command-events (list ch)))))))
1580 1580
@@ -4045,7 +4045,7 @@ Typing SPC flushes the help buffer."
4045 (progn 4045 (progn
4046 (mouse-choose-completion first) 4046 (mouse-choose-completion first)
4047 (set-window-configuration conf)) 4047 (set-window-configuration conf))
4048 (if (eq first ?\ ) 4048 (if (eq first ?\s)
4049 (set-window-configuration conf) 4049 (set-window-configuration conf)
4050 (setq unread-command-events (listify-key-sequence key))))))) 4050 (setq unread-command-events (listify-key-sequence key)))))))
4051 4051