# HG changeset patch # User Juanma Barranquero # Date 1120444555 0 # Node ID 72d07ab7de5d72eb6fcfcdaa3f6467eb380b4f1b # Parent 22c5a86288285c705d56d741e8e23ba2bf2f0843 (term): Finish `defgroup' description with period. (term-dynamic-list-input-ring, term-dynamic-list-completions): "?\ " -> "?\s". diff -r 22c5a8628828 -r 72d07ab7de5d lisp/term.el --- 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)))))))