summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-03-22 04:05:44 +0000
committerRichard M. Stallman <rms@gnu.org>1997-03-22 04:05:44 +0000
commita4cca602b031698b615b35281ee6663461731b64 (patch)
tree0e581cc4fe0030b454ca5e2ab52311dfcc69861a
parent9e7aa5c08f5079ac015a590e7e1628694828f410 (diff)
downloademacs-a4cca602b031698b615b35281ee6663461731b64.tar.gz
(struct buffer): New field display_count.
-rw-r--r--src/buffer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 21f32422599..0a3100ebcb3 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -436,6 +436,9 @@ struct buffer
or nil if that window no longer displays this buffer. */
Lisp_Object last_selected_window;
+ /* Incremented each time the buffer is displayed in a window. */
+ Lisp_Object display_count;
+
/* These are so we don't have to recompile everything
the next few times we add a new slot. */
Lisp_Object extra2, extra3;