]> git.eshelyaron.com Git - emacs.git/commitdiff
(term): Finish `defgroup' description with period.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 4 Jul 2005 02:35:55 +0000 (02:35 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 4 Jul 2005 02:35:55 +0000 (02:35 +0000)
(term-dynamic-list-input-ring, term-dynamic-list-completions): "?\ " -> "?\s".

lisp/term.el

index 3295c87da14bdec274fcd2bd181391c99308a8b0..122953af124dd341b6e541aa5bb800186128f8e2 100644 (file)
 (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 @@ See also `term-read-input-ring'."
       (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 @@ Typing SPC flushes the help buffer."
          (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)))))))