comparison lisp/comint.el @ 42341:e0faaa516289

Comment change.
author Richard M. Stallman <rms@gnu.org>
date Wed, 26 Dec 2001 21:27:54 +0000
parents 7308bbc423d5
children c32f238e8a16
comparison
equal deleted inserted replaced
42340:38e43ae6eb0e 42341:e0faaa516289
726 ;; If using terminfo, we specify `dumb' because that is 726 ;; If using terminfo, we specify `dumb' because that is
727 ;; a defined terminal type. `emacs' is not a defined terminal type 727 ;; a defined terminal type. `emacs' is not a defined terminal type
728 ;; and there is no way for us to define it here. 728 ;; and there is no way for us to define it here.
729 ;; Some programs that use terminfo get very confused 729 ;; Some programs that use terminfo get very confused
730 ;; if TERM is not a valid terminal type. 730 ;; if TERM is not a valid terminal type.
731 ;; ;; There is similar code in compile.el.
731 (if (and (boundp 'system-uses-terminfo) system-uses-terminfo) 732 (if (and (boundp 'system-uses-terminfo) system-uses-terminfo)
732 (list "TERM=dumb" "TERMCAP=" 733 (list "TERM=dumb" "TERMCAP="
733 (format "COLUMNS=%d" (window-width))) 734 (format "COLUMNS=%d" (window-width)))
734 (list "TERM=emacs" 735 (list "TERM=emacs"
735 (format "TERMCAP=emacs:co#%d:tc=unknown:" (window-width)))) 736 (format "TERMCAP=emacs:co#%d:tc=unknown:" (window-width))))