diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-07-04 02:35:55 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-07-04 02:35:55 +0000 |
commit | 34de8ce77c402975d3eaf9a8977d28ce5c8a258d (patch) | |
tree | eb52da4aaeb914c02c5d0447a70b6e8f1508ed1b /lisp | |
parent | 61bf4252532c52a6035c4a30846c1252c0dae7e8 (diff) | |
download | emacs-34de8ce77c402975d3eaf9a8977d28ce5c8a258d.tar.gz |
(term): Finish `defgroup' description with period.
(term-dynamic-list-input-ring, term-dynamic-list-completions): "?\ " -> "?\s".
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/term.el | 6 |
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 @@ (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))))))) |