emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/termhooks.h,v


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/termhooks.h,v
Date: Thu, 20 Sep 2007 21:26:02 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Stefan Monnier <monnier>        07/09/20 21:26:02

Index: termhooks.h
===================================================================
RCS file: /sources/emacs/emacs/src/termhooks.h,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -b -r1.83 -r1.84
--- termhooks.h 4 Sep 2007 21:42:57 -0000       1.83
+++ termhooks.h 20 Sep 2007 21:26:01 -0000      1.84
@@ -318,6 +318,11 @@
 /* Terminal-local parameters. */
 struct terminal
 {
+  /* The first two fields are really the header of a vector */
+  /* The terminal code does not refer to them.  */
+  EMACS_INT size;
+  struct Lisp_Vector *vec_next;
+
   /* Chain of all terminal devices. */
   struct terminal *next_terminal;
 
@@ -327,10 +332,6 @@
   /* The number of frames that are on this terminal. */
   int reference_count;
 
-  /* Nonzero while deleting this terminal.  Used to protect against
-     recursive calls to delete_terminal_hook.  */
-  int deleted;
-
   /* The type of the terminal device. */
   enum output_method type;
 




reply via email to

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