Mercurial > hg > xemacs-beta
comparison src/console-tty.c @ 380:8626e4521993 r21-2-5
Import from CVS: tag r21-2-5
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:07:10 +0200 |
parents | 7df0dd720c89 |
children | bbff43aa5eb7 |
comparison
equal
deleted
inserted
replaced
379:76b7d63099ad | 380:8626e4521993 |
---|---|
30 #include "console-tty.h" | 30 #include "console-tty.h" |
31 #include "console-stream.h" | 31 #include "console-stream.h" |
32 #include "faces.h" | 32 #include "faces.h" |
33 #include "frame.h" | 33 #include "frame.h" |
34 #include "lstream.h" | 34 #include "lstream.h" |
35 #include "redisplay.h" | |
36 #include "sysdep.h" | 35 #include "sysdep.h" |
37 #include "sysfile.h" | 36 #include "sysfile.h" |
38 #ifdef FILE_CODING | 37 #ifdef FILE_CODING |
39 #include "file-coding.h" | 38 #include "file-coding.h" |
40 #endif | 39 #endif |
163 | 162 |
164 static void | 163 static void |
165 tty_mark_console (struct console *con, void (*markobj) (Lisp_Object)) | 164 tty_mark_console (struct console *con, void (*markobj) (Lisp_Object)) |
166 { | 165 { |
167 struct tty_console *tty_con = CONSOLE_TTY_DATA (con); | 166 struct tty_console *tty_con = CONSOLE_TTY_DATA (con); |
168 ((markobj) (tty_con->terminal_type)); | 167 markobj (tty_con->terminal_type); |
169 ((markobj) (tty_con->instream)); | 168 markobj (tty_con->instream); |
170 ((markobj) (tty_con->outstream)); | 169 markobj (tty_con->outstream); |
171 } | 170 } |
172 | 171 |
173 static int | 172 static int |
174 tty_initially_selected_for_input (struct console *con) | 173 tty_initially_selected_for_input (struct console *con) |
175 { | 174 { |