diff options
| author | tino calancha | 2018-01-21 13:34:55 +0900 |
|---|---|---|
| committer | tino calancha | 2018-01-21 13:34:55 +0900 |
| commit | c2e6d121ff0df7f0b5eee7bec7f4b114befa8cde (patch) | |
| tree | ad302fd68e9feb0c31ec0cb87dfdaec8899a7812 | |
| parent | 854a1c0a61c8754beab95734db772298bc60cbea (diff) | |
| download | emacs-c2e6d121ff0df7f0b5eee7bec7f4b114befa8cde.tar.gz emacs-c2e6d121ff0df7f0b5eee7bec7f4b114befa8cde.zip | |
* lisp/term.el (term-send-input): Fix text duplication in docstring
| -rw-r--r-- | lisp/term.el | 15 |
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 | |||
| 2049 | point as input to the process. Before the process output mark, calls value | 2049 | point as input to the process. Before the process output mark, calls value |
| 2050 | of variable `term-get-old-input' to retrieve old input, copies it to the | 2050 | of variable `term-get-old-input' to retrieve old input, copies it to the |
| 2051 | process mark, and sends it. A terminal newline is also inserted into the | 2051 | process mark, and sends it. A terminal newline is also inserted into the |
| 2052 | buffer and sent to the process. The list of function names contained in the | 2052 | buffer and sent to the process. The functions in `term-input-filter-functions' |
| 2053 | value of `term-input-filter-functions' is called on the input before sending | 2053 | are called on the input before sending it. |
| 2054 | it. 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 | |||
| 2057 | Any 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 | ||
| 2059 | of `term-input-filter-functions' is called on the input before sending it. | ||
| 2060 | The input is entered into the input history ring, if the value of variable | 2055 | The 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 |
| 2057 | reference may be expanded depending on the value of the variable | ||
| 2058 | `term-input-autoexpand'. | ||
| 2062 | 2059 | ||
| 2063 | If variable `term-eol-on-send' is non-nil, then point is moved to the | 2060 | If variable `term-eol-on-send' is non-nil, then point is moved to the |
| 2064 | end of line before sending the input. | 2061 | end of line before sending the input. |