Mercurial > hg > xemacs-beta
comparison src/console.c @ 5052:92dc90c0bb40
merge
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Sat, 20 Feb 2010 23:56:01 -0600 |
parents | 6f2158fa75ed d4f666cda5e6 |
children | 2a462149bd6a |
comparison
equal
deleted
inserted
replaced
5051:c3d372419e09 | 5052:92dc90c0bb40 |
---|---|
39 #include "window.h" | 39 #include "window.h" |
40 | 40 |
41 #include "console-stream-impl.h" | 41 #include "console-stream-impl.h" |
42 #ifdef HAVE_TTY | 42 #ifdef HAVE_TTY |
43 #include "console-tty-impl.h" | 43 #include "console-tty-impl.h" |
44 #endif | |
45 | |
46 #ifdef HAVE_TTY | |
47 #define USED_IF_TTY(decl) decl | |
48 #else | |
49 #define USED_IF_TTY(decl) UNUSED (decl) | |
50 #endif | 44 #endif |
51 | 45 |
52 Lisp_Object Vconsole_list, Vselected_console; | 46 Lisp_Object Vconsole_list, Vselected_console; |
53 | 47 |
54 Lisp_Object Vcreate_console_hook, Vdelete_console_hook; | 48 Lisp_Object Vcreate_console_hook, Vdelete_console_hook; |