diff options
| author | Karl Heuer | 1998-09-23 23:36:59 +0000 |
|---|---|---|
| committer | Karl Heuer | 1998-09-23 23:36:59 +0000 |
| commit | 69edcf7e99db16e4f74a43397baa39b540c15d52 (patch) | |
| tree | 1462cda38282aa5fe880ebf3de56107b1a51e134 | |
| parent | 1c9320f14a9130be67dca6448c5d023ddf73cedc (diff) | |
| download | emacs-69edcf7e99db16e4f74a43397baa39b540c15d52.tar.gz emacs-69edcf7e99db16e4f74a43397baa39b540c15d52.zip | |
(term-delimiter-argument-list): Doc fix.
(term-emulate-terminal): Escape literal semicolon.
| -rw-r--r-- | lisp/term.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/term.el b/lisp/term.el index eb453e4dc18..f9cf0a63744 100644 --- a/lisp/term.el +++ b/lisp/term.el | |||
| @@ -480,7 +480,7 @@ surrounding them, and also be regarded as arguments in their own right (unlike | |||
| 480 | whitespace). See `term-arguments'. | 480 | whitespace). See `term-arguments'. |
| 481 | Defaults to the empty list. | 481 | Defaults to the empty list. |
| 482 | 482 | ||
| 483 | For shells, a good value is (?\\| ?& ?< ?> ?\\( ?\\) ?;). | 483 | For shells, a good value is (?\\| ?& ?< ?> ?\\( ?\\) ?\\;). |
| 484 | 484 | ||
| 485 | This is a good thing to set in mode hooks.") | 485 | This is a good thing to set in mode hooks.") |
| 486 | 486 | ||
| @@ -2877,7 +2877,7 @@ See `term-prompt-regexp'." | |||
| 2877 | (cond ((and (>= char ?0) (<= char ?9)) | 2877 | (cond ((and (>= char ?0) (<= char ?9)) |
| 2878 | (setq term-terminal-parameter | 2878 | (setq term-terminal-parameter |
| 2879 | (+ (* 10 term-terminal-parameter) (- char ?0)))) | 2879 | (+ (* 10 term-terminal-parameter) (- char ?0)))) |
| 2880 | ((eq char ?\073 ) ; ?; | 2880 | ((eq char ?\;) |
| 2881 | ;;; Some modifications to cope with multiple settings like ^[[01;32;43m -mm | 2881 | ;;; Some modifications to cope with multiple settings like ^[[01;32;43m -mm |
| 2882 | (setq term-terminal-more-parameters 1) | 2882 | (setq term-terminal-more-parameters 1) |
| 2883 | (setq term-terminal-previous-parameter-4 | 2883 | (setq term-terminal-previous-parameter-4 |