aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortino calancha2018-01-21 13:34:55 +0900
committertino calancha2018-01-21 13:34:55 +0900
commitc2e6d121ff0df7f0b5eee7bec7f4b114befa8cde (patch)
treead302fd68e9feb0c31ec0cb87dfdaec8899a7812
parent854a1c0a61c8754beab95734db772298bc60cbea (diff)
downloademacs-c2e6d121ff0df7f0b5eee7bec7f4b114befa8cde.tar.gz
emacs-c2e6d121ff0df7f0b5eee7bec7f4b114befa8cde.zip
* lisp/term.el (term-send-input): Fix text duplication in docstring
-rw-r--r--lisp/term.el15
1 files changed, 6 insertions, 9 deletions
diff --git a/lisp/term.el b/lisp/term.el
index 0492763854c..078a4baff59 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -2049,16 +2049,13 @@ After the process output mark, sends all text from the process mark to
2049point as input to the process. Before the process output mark, calls value 2049point as input to the process. Before the process output mark, calls value
2050of variable `term-get-old-input' to retrieve old input, copies it to the 2050of variable `term-get-old-input' to retrieve old input, copies it to the
2051process mark, and sends it. A terminal newline is also inserted into the 2051process mark, and sends it. A terminal newline is also inserted into the
2052buffer and sent to the process. The list of function names contained in the 2052buffer and sent to the process. The functions in `term-input-filter-functions'
2053value of `term-input-filter-functions' is called on the input before sending 2053are called on the input before sending it.
2054it. The input is entered into the input history ring, if the value of variable 2054
2055`term-input-filter' returns non-nil when called on the input.
2056
2057Any history reference may be expanded depending on the value of the variable
2058`term-input-autoexpand'. The list of function names contained in the value
2059of `term-input-filter-functions' is called on the input before sending it.
2060The input is entered into the input history ring, if the value of variable 2055The input is entered into the input history ring, if the value of variable
2061`term-input-filter' returns non-nil when called on the input. 2056`term-input-filter' returns non-nil when called on the input. Any history
2057reference may be expanded depending on the value of the variable
2058`term-input-autoexpand'.
2062 2059
2063If variable `term-eol-on-send' is non-nil, then point is moved to the 2060If variable `term-eol-on-send' is non-nil, then point is moved to the
2064end of line before sending the input. 2061end of line before sending the input.