diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-06-28 08:09:53 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-06-28 08:09:53 +0000 |
commit | 30308d5e7268831202b8a4f37e01e78d6b97462e (patch) | |
tree | 3b1e7fe548c5f3c92132b897a5623c71e7f88fd1 /src/window.h | |
parent | d2a4935039020e7c3288c53dfc09bd63a4aea9f9 (diff) | |
download | emacs-30308d5e7268831202b8a4f37e01e78d6b97462e.tar.gz emacs-30308d5e7268831202b8a4f37e01e78d6b97462e.tar.bz2 emacs-30308d5e7268831202b8a4f37e01e78d6b97462e.zip |
(struct window): New field, last_had_star.
Diffstat (limited to 'src/window.h')
-rw-r--r-- | src/window.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/window.h b/src/window.h index e35840a92a0..551c0178505 100644 --- a/src/window.h +++ b/src/window.h @@ -124,6 +124,9 @@ struct window Lisp_Object last_modified; /* Value of point at that time */ Lisp_Object last_point; + /* Non-nil if the buffer was "modified" when the window + was last updated. */ + Lisp_Object last_had_star; /* This window's vertical scroll bar. This field is only for use by the window-system-dependent code which implements the scroll bars; it can store anything it likes here. If this |