comparison src/buffer.h @ 485:8c615e453683

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Mon, 13 Jan 1992 21:48:08 +0000
parents 596cfc339998
children f81a3cf6ec22
comparison
equal deleted inserted replaced
484:3165b2697c78 485:8c615e453683
126 int gap_size; /* Size of buffer's gap */ 126 int gap_size; /* Size of buffer's gap */
127 int modiff; /* This counts buffer-modification events 127 int modiff; /* This counts buffer-modification events
128 for this buffer. It is incremented for 128 for this buffer. It is incremented for
129 each such event, and never otherwise 129 each such event, and never otherwise
130 changed. */ 130 changed. */
131
132 }; 131 };
133 132
134 struct buffer 133 struct buffer
135 { 134 {
136 /* Everything before the `name' slot must be of a non-Lisp_Object type, 135 /* Everything before the `name' slot must be of a non-Lisp_Object type,
146 collect killed buffers properly. */ 145 collect killed buffers properly. */
147 struct buffer *next; 146 struct buffer *next;
148 /* Flags saying which DEFVAR_PER_BUFFER variables 147 /* Flags saying which DEFVAR_PER_BUFFER variables
149 are local to this buffer. */ 148 are local to this buffer. */
150 int local_var_flags; 149 int local_var_flags;
151 /* Value of text.modified as of when visited file was read or written. */ 150 /* Value of text.modiff as of when visited file was read or written. */
152 int save_modified; 151 int save_modified;
153 /* Set to the modtime of the visited file when read or written. 152 /* Set to the modtime of the visited file when read or written.
154 -1 means visited file was nonexistent. 153 -1 means visited file was nonexistent.
155 0 means visited file modtime unknown; in no case complain 154 0 means visited file modtime unknown; in no case complain
156 about any mismatch on next save attempt. */ 155 about any mismatch on next save attempt. */