From: Richard M. Stallman Date: Sat, 22 Mar 1997 04:05:44 +0000 (+0000) Subject: (struct buffer): New field display_count. X-Git-Tag: emacs-20.1~2726 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f809d1628d2bd65b2cf6e8ca0fe9feb2dda9f88b;p=emacs.git (struct buffer): New field display_count. --- 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;