diff src/console-tty.h @ 70:131b0175ea99 r20-0b30

Import from CVS: tag r20-0b30
author cvs
date Mon, 13 Aug 2007 09:02:59 +0200
parents 56c54cf7c5b6
children 54cc21c15cbb
line wrap: on
line diff
--- a/src/console-tty.h	Mon Aug 13 09:00:04 2007 +0200
+++ b/src/console-tty.h	Mon Aug 13 09:02:59 2007 +0200
@@ -43,7 +43,6 @@
   int infd, outfd;
   Lisp_Object instream, outstream;
   Lisp_Object terminal_type;
-  Lisp_Object controlling_process;
   char *term_entry_buffer;
 
   /* Physical location of cursor on this console. */
@@ -167,8 +166,6 @@
       CONST char *end_motion;		/* rmcup, te */
       CONST char *keypad_on;		/* smkx, ks */
       CONST char *keypad_off;		/* rmkx, ke */
-
-      CONST char *orig_pair;		/* op, op */
     } sd;
   
   /* costs of various operations */
@@ -190,8 +187,8 @@
   struct emacs_tty old_tty;
   
   /* Is this TTY our controlling terminal? */
-  unsigned int controlling_terminal :1;
-  unsigned int is_stdio :1;
+  int controlling_terminal :1;
+  int is_stdio :1;
 };
 
 #define CONSOLE_TTY_DATA(c) CONSOLE_TYPE_DATA (c, tty)