emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/src termchar.h


From: Chong Yidong
Subject: [Emacs-diffs] emacs/src termchar.h
Date: Mon, 08 Dec 2008 14:44:23 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Chong Yidong <cyd>      08/12/08 14:44:23

Modified files:
        src            : termchar.h 

Log message:
        (struct tty): New members termcap_term_buffer and
        termcap_strings_buffer.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/src/termchar.h?cvsroot=emacs&r1=1.18&r2=1.19

Patches:
Index: termchar.h
===================================================================
RCS file: /sources/emacs/emacs/src/termchar.h,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- termchar.h  23 Aug 2008 16:48:24 -0000      1.18
+++ termchar.h  8 Dec 2008 14:44:23 -0000       1.19
@@ -98,6 +98,15 @@
   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" */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]