Mercurial > hg > xemacs-beta
comparison src/console-tty.c @ 420:41dbb7a9d5f2 r21-2-18
Import from CVS: tag r21-2-18
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:24:09 +0200 |
parents | 697ef44129c6 |
children | 11054d720c21 |
comparison
equal
deleted
inserted
replaced
419:66615b78f1a5 | 420:41dbb7a9d5f2 |
---|---|
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 "glyphs.h" | |
35 #include "sysdep.h" | 36 #include "sysdep.h" |
36 #include "sysfile.h" | 37 #include "sysfile.h" |
37 #ifdef FILE_CODING | 38 #ifdef FILE_CODING |
38 #include "file-coding.h" | 39 #include "file-coding.h" |
39 #endif | 40 #endif |
40 #ifdef HAVE_GPM | 41 #ifdef HAVE_GPM |
41 #include "gpmevent.h" | 42 #include "gpmevent.h" |
42 #endif | 43 #endif |
43 | 44 |
44 DEFINE_CONSOLE_TYPE (tty); | 45 DEFINE_CONSOLE_TYPE (tty); |
46 DECLARE_IMAGE_INSTANTIATOR_FORMAT (nothing); | |
47 DECLARE_IMAGE_INSTANTIATOR_FORMAT (string); | |
48 DECLARE_IMAGE_INSTANTIATOR_FORMAT (formatted_string); | |
49 DECLARE_IMAGE_INSTANTIATOR_FORMAT (inherit); | |
45 | 50 |
46 Lisp_Object Qterminal_type; | 51 Lisp_Object Qterminal_type; |
47 Lisp_Object Qcontrolling_process; | 52 Lisp_Object Qcontrolling_process; |
48 | 53 |
49 | 54 |
365 CONSOLE_HAS_METHOD (tty, semi_canonicalize_console_connection); | 370 CONSOLE_HAS_METHOD (tty, semi_canonicalize_console_connection); |
366 CONSOLE_HAS_METHOD (tty, semi_canonicalize_device_connection); | 371 CONSOLE_HAS_METHOD (tty, semi_canonicalize_device_connection); |
367 } | 372 } |
368 | 373 |
369 void | 374 void |
375 image_instantiator_format_create_glyphs_tty (void) | |
376 { | |
377 IIFORMAT_VALID_CONSOLE (tty, nothing); | |
378 IIFORMAT_VALID_CONSOLE (tty, string); | |
379 IIFORMAT_VALID_CONSOLE (tty, formatted_string); | |
380 IIFORMAT_VALID_CONSOLE (tty, inherit); | |
381 } | |
382 | |
383 void | |
370 vars_of_console_tty (void) | 384 vars_of_console_tty (void) |
371 { | 385 { |
372 Fprovide (Qtty); | 386 Fprovide (Qtty); |
373 } | 387 } |