comparison src/buffer.h @ 17219:e3db9264789e

(struct buffer): New field display_count.
author Richard M. Stallman <rms@gnu.org>
date Sat, 22 Mar 1997 04:05:44 +0000
parents 78f7b873184b
children 371736608f2f
comparison
equal deleted inserted replaced
17218:a57ca25e9c62 17219:e3db9264789e
434 434
435 /* This is the last window that was selected with this buffer in it, 435 /* This is the last window that was selected with this buffer in it,
436 or nil if that window no longer displays this buffer. */ 436 or nil if that window no longer displays this buffer. */
437 Lisp_Object last_selected_window; 437 Lisp_Object last_selected_window;
438 438
439 /* Incremented each time the buffer is displayed in a window. */
440 Lisp_Object display_count;
441
439 /* These are so we don't have to recompile everything 442 /* These are so we don't have to recompile everything
440 the next few times we add a new slot. */ 443 the next few times we add a new slot. */
441 Lisp_Object extra2, extra3; 444 Lisp_Object extra2, extra3;
442 }; 445 };
443 446