diff options
| author | Richard M. Stallman | 2004-11-25 02:54:20 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-11-25 02:54:20 +0000 |
| commit | 269cb13ecceedbe82a969a61987867a147b9ec7e (patch) | |
| tree | bc0548feb44410f4999da6e5025e7937b227c512 | |
| parent | 12032009a49f05a94c7adcd69a73a0bbd1d7de3b (diff) | |
| download | emacs-269cb13ecceedbe82a969a61987867a147b9ec7e.tar.gz emacs-269cb13ecceedbe82a969a61987867a147b9ec7e.zip | |
(term-escape-char, term-mode): Doc fixes.
| -rw-r--r-- | lisp/term.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/term.el b/lisp/term.el index bc816e476e1..8c624568ad0 100644 --- a/lisp/term.el +++ b/lisp/term.el | |||
| @@ -626,7 +626,7 @@ executed once when the buffer is created." | |||
| 626 | "Keyboard map for sending characters directly to the inferior process.") | 626 | "Keyboard map for sending characters directly to the inferior process.") |
| 627 | (defvar term-escape-char nil | 627 | (defvar term-escape-char nil |
| 628 | "Escape character for char-sub-mode of term mode. | 628 | "Escape character for char-sub-mode of term mode. |
| 629 | Do not change it directly; use term-set-escape-char instead.") | 629 | Do not change it directly; use `term-set-escape-char' instead.") |
| 630 | (defvar term-raw-escape-map nil) | 630 | (defvar term-raw-escape-map nil) |
| 631 | 631 | ||
| 632 | (defvar term-pager-break-map nil) | 632 | (defvar term-pager-break-map nil) |
| @@ -959,7 +959,8 @@ The interpreter name is same as buffer name, sans the asterisks. | |||
| 959 | 959 | ||
| 960 | There are two submodes: line mode and char mode. By default, you are | 960 | There are two submodes: line mode and char mode. By default, you are |
| 961 | in char mode. In char sub-mode, each character (except | 961 | in char mode. In char sub-mode, each character (except |
| 962 | `term-escape-char') is set immediately. | 962 | `term-escape-char') is sent immediately to the subprocess. |
| 963 | The escape character is equivalent to the usual meaning of C-x. | ||
| 963 | 964 | ||
| 964 | In line mode, you send a line of input at a time; use | 965 | In line mode, you send a line of input at a time; use |
| 965 | \\[term-send-input] to send. | 966 | \\[term-send-input] to send. |