Mercurial > hg > xemacs-beta
comparison src/console-tty.h @ 74:54cc21c15cbb r20-0b32
Import from CVS: tag r20-0b32
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:04:33 +0200 |
parents | 131b0175ea99 |
children | 360340f9fd5f |
comparison
equal
deleted
inserted
replaced
73:e2d7a37b7c8d | 74:54cc21c15cbb |
---|---|
185 | 185 |
186 /* The initial tty mode bits */ | 186 /* The initial tty mode bits */ |
187 struct emacs_tty old_tty; | 187 struct emacs_tty old_tty; |
188 | 188 |
189 /* Is this TTY our controlling terminal? */ | 189 /* Is this TTY our controlling terminal? */ |
190 int controlling_terminal :1; | 190 unsigned int controlling_terminal :1; |
191 int is_stdio :1; | 191 unsigned int is_stdio :1; |
192 }; | 192 }; |
193 | 193 |
194 #define CONSOLE_TTY_DATA(c) CONSOLE_TYPE_DATA (c, tty) | 194 #define CONSOLE_TTY_DATA(c) CONSOLE_TYPE_DATA (c, tty) |
195 #define CONSOLE_TTY_CURSOR_X(c) (CONSOLE_TTY_DATA (c)->cursor_x) | 195 #define CONSOLE_TTY_CURSOR_X(c) (CONSOLE_TTY_DATA (c)->cursor_x) |
196 #define CONSOLE_TTY_CURSOR_Y(c) (CONSOLE_TTY_DATA (c)->cursor_y) | 196 #define CONSOLE_TTY_CURSOR_Y(c) (CONSOLE_TTY_DATA (c)->cursor_y) |