comparison src/buffer.h @ 22151:a48831a21513

(struct buffer): New slot display_time.
author Richard M. Stallman <rms@gnu.org>
date Wed, 20 May 1998 00:39:09 +0000
parents c26bceb68019
children a80f6d8c1dc6
comparison
equal deleted inserted replaced
22150:b6edeb61a779 22151:a48831a21513
650 Lisp_Object last_selected_window; 650 Lisp_Object last_selected_window;
651 651
652 /* Incremented each time the buffer is displayed in a window. */ 652 /* Incremented each time the buffer is displayed in a window. */
653 Lisp_Object display_count; 653 Lisp_Object display_count;
654 654
655 /* Time stamp updated each time this buffer is displayed in a window. */
656 Lisp_Object display_time;
657
655 /* These are so we don't have to recompile everything 658 /* These are so we don't have to recompile everything
656 the next few times we add a new slot. */ 659 the next few times we add a new slot. */
657 Lisp_Object extra2, extra3; 660 Lisp_Object extra2, extra3;
658 }; 661 };
659 662