diff options
| author | Richard M. Stallman | 1997-03-22 04:05:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-03-22 04:05:44 +0000 |
| commit | f809d1628d2bd65b2cf6e8ca0fe9feb2dda9f88b (patch) | |
| tree | dcdfdd87109bf29cb62eb3ceb79805e2ae06c0c1 /src/buffer.h | |
| parent | 7962a441e707c0e59e39023d9ef44e697eba3e2b (diff) | |
| download | emacs-f809d1628d2bd65b2cf6e8ca0fe9feb2dda9f88b.tar.gz emacs-f809d1628d2bd65b2cf6e8ca0fe9feb2dda9f88b.zip | |
(struct buffer): New field display_count.
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 3 |
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 | |||
| 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; |