aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-07-04 02:35:55 +0000
committerJuanma Barranquero2005-07-04 02:35:55 +0000
commit34de8ce77c402975d3eaf9a8977d28ce5c8a258d (patch)
treeeb52da4aaeb914c02c5d0447a70b6e8f1508ed1b
parent61bf4252532c52a6035c4a30846c1252c0dae7e8 (diff)
downloademacs-34de8ce77c402975d3eaf9a8977d28ce5c8a258d.tar.gz
emacs-34de8ce77c402975d3eaf9a8977d28ce5c8a258d.zip
(term): Finish `defgroup' description with period.
(term-dynamic-list-input-ring, term-dynamic-list-completions): "?\ " -> "?\s".
-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