(struct tty): New members termcap_term_buffer and
authorChong Yidong <cyd@stupidchicken.com>
Mon, 8 Dec 2008 14:44:23 +0000 (14:44 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Mon, 8 Dec 2008 14:44:23 +0000 (14:44 +0000)
termcap_strings_buffer.

src/termchar.h

index 2bac6c6..0e4d2ee 100644 (file)
@@ -98,6 +98,15 @@ struct tty_display_info
   int mouse_face_hidden;
 #endif /* !MSDOS */
 
+  /* Buffer used internally by termcap (see tgetent in the Termcap
+     manual).  Only init_tty and delete_tty should change this.  */
+  char *termcap_term_buffer;
+
+  /* Buffer storing terminal description strings (see tgetstr in the
+     Termcap manual).  Only init_tty and delete_tty should change
+     this.  */
+  char *termcap_strings_buffer;
+
   /* Strings, numbers and flags taken from the termcap entry.  */
 
   char *TS_ins_line;           /* "al" */