comparison src/console.h @ 874:d4ba25667ff4

[xemacs-hg @ 2002-06-22 17:14:43 by michaels] 2002-06-22 Mike Sperber <mike@xemacs.org> * faces.c (face_property_matching_instance): Only set cdr of matchspec if it's actually a cons. * console.h: Define opaque console_methods to unbreak the build. * objects.c (initialize_charset_font_caches): (invalidate_charset_font_caches): Only define if we're MULE. (font_instantiate): Unbreak for non-MULE.
author michaels
date Sat, 22 Jun 2002 17:14:45 +0000
parents 79c6ff3eef26
children c925bacdda60
comparison
equal deleted inserted replaced
873:26f7cf2a4792 874:d4ba25667ff4
70 #define CONCHECK_CONSOLE(x) CONCHECK_RECORD (x, console) 70 #define CONCHECK_CONSOLE(x) CONCHECK_RECORD (x, console)
71 71
72 /* Basic properties available to non-privileged users; redefined in 72 /* Basic properties available to non-privileged users; redefined in
73 console-impl.h */ 73 console-impl.h */
74 74
75 struct console_methods;
76
75 int console_live_p (struct console *c); 77 int console_live_p (struct console *c);
76 Lisp_Object console_device_list (struct console *c); 78 Lisp_Object console_device_list (struct console *c);
77 79
78 #define CONSOLE_LIVE_P(c) console_live_p (c) 80 #define CONSOLE_LIVE_P(c) console_live_p (c)
79 #define CONSOLE_DEVICE_LIST(c) console_device_list (c) 81 #define CONSOLE_DEVICE_LIST(c) console_device_list (c)