comparison lisp/term.el @ 23311:fd4a0e88aed5

(term-delimiter-argument-list): Doc fix. (term-emulate-terminal): Escape literal semicolon.
author Karl Heuer <kwzh@gnu.org>
date Wed, 23 Sep 1998 23:36:59 +0000
parents 7ebe9039c4f9
children 9a52ffb7bfb2
comparison
equal deleted inserted replaced
23310:c827f2846a3d 23311:fd4a0e88aed5
478 Strings comprising a character in this list will separate the arguments 478 Strings comprising a character in this list will separate the arguments
479 surrounding them, and also be regarded as arguments in their own right (unlike 479 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
487 (defcustom term-input-autoexpand nil 487 (defcustom term-input-autoexpand nil
488 "*If non-nil, expand input command history references on completion. 488 "*If non-nil, expand input command history references on completion.
2875 ((setq term-terminal-state 0)))) 2875 ((setq term-terminal-state 0))))
2876 ((eq term-terminal-state 3) ; Seen Esc [ 2876 ((eq term-terminal-state 3) ; Seen Esc [
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
2884 term-terminal-previous-parameter-3) 2884 term-terminal-previous-parameter-3)
2885 (setq term-terminal-previous-parameter-3 2885 (setq term-terminal-previous-parameter-3