changeset 64024:72d07ab7de5d

(term): Finish `defgroup' description with period. (term-dynamic-list-input-ring, term-dynamic-list-completions): "?\ " -> "?\s".
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 04 Jul 2005 02:35:55 +0000
parents 22c5a8628828
children c101699af337
files lisp/term.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/term.el	Mon Jul 04 02:33:29 2005 +0000
+++ b/lisp/term.el	Mon Jul 04 02:35:55 2005 +0000
@@ -405,7 +405,7 @@
 (require 'ehelp)
 
 (defgroup term nil
-  "General command interpreter in a window"
+  "General command interpreter in a window."
   :group 'processes
   :group 'unix)
 
@@ -1574,7 +1574,7 @@
       (sit-for 0)
       (message "Hit space to flush")
       (let ((ch (read-event)))
-	(if (eq ch ?\ )
+	(if (eq ch ?\s)
 	    (set-window-configuration conf)
 	  (setq unread-command-events (list ch)))))))
 
@@ -4045,7 +4045,7 @@
 	  (progn
 	    (mouse-choose-completion first)
 	    (set-window-configuration conf))
-	(if (eq first ?\ )
+	(if (eq first ?\s)
 	    (set-window-configuration conf)
 	  (setq unread-command-events (listify-key-sequence key)))))))