Mercurial > hg > xemacs-beta
comparison src/console-tty.c @ 195:a2f645c6b9f8 r20-3b24
Import from CVS: tag r20-3b24
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:59:05 +0200 |
parents | 3d6bfa290dbd |
children | e45d5e7c476e |
comparison
equal
deleted
inserted
replaced
194:2947057885e5 | 195:a2f645c6b9f8 |
---|---|
90 CHECK_INT (controlling_process); | 90 CHECK_INT (controlling_process); |
91 | 91 |
92 /* Open the specified console */ | 92 /* Open the specified console */ |
93 | 93 |
94 allocate_tty_console_struct (con); | 94 allocate_tty_console_struct (con); |
95 if (!NILP (Fequal (tty, Vstdio_str))) | 95 if (internal_equal (tty, Vstdio_str, 0)) |
96 { | 96 { |
97 infd = fileno (stdin); | 97 infd = fileno (stdin); |
98 outfd = fileno (stdout); | 98 outfd = fileno (stdout); |
99 CONSOLE_TTY_DATA (con)->is_stdio = 1; | 99 CONSOLE_TTY_DATA (con)->is_stdio = 1; |
100 } | 100 } |