Mercurial > hg > xemacs-beta
comparison src/console-tty.h @ 16:0293115a14e9 r19-15b91
Import from CVS: tag r19-15b91
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:49:20 +0200 |
parents | 376386a54a3c |
children | ec9a17fef872 |
comparison
equal
deleted
inserted
replaced
15:ad457d5f7d04 | 16:0293115a14e9 |
---|---|
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) |