comparison lisp/terminal.el @ 6423:5f52d469e0c8

Delete obsolete comment.
author Karl Heuer <kwzh@gnu.org>
date Sat, 19 Mar 1994 05:34:11 +0000
parents c40e283c262b
children 4c0af7fbb42e
comparison
equal deleted inserted replaced
6422:401da3d11995 6423:5f52d469e0c8
1120 (cons (concat "TERMCAP=" termcap) 1120 (cons (concat "TERMCAP=" termcap)
1121 process-environment)))) 1121 process-environment))))
1122 (setq te-process 1122 (setq te-process
1123 (start-process "terminal-emulator" (current-buffer) 1123 (start-process "terminal-emulator" (current-buffer)
1124 "/bin/sh" "-c" 1124 "/bin/sh" "-c"
1125 ;; Yuck!!! Start a shell to set some terminal
1126 ;; control characteristics. Then start the
1127 ;; "env" program to setup the terminal type
1128 ;; Then finally start the program we wanted.
1129 (format "%s; exec %s" 1125 (format "%s; exec %s"
1130 te-stty-string 1126 te-stty-string
1131 (mapconcat 'te-quote-arg-for-sh 1127 (mapconcat 'te-quote-arg-for-sh
1132 (cons program args) " "))))) 1128 (cons program args) " ")))))
1133 (set-process-filter te-process 'te-filter) 1129 (set-process-filter te-process 'te-filter)