diff options
| author | Richard M. Stallman | 1996-09-15 01:49:52 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-09-15 01:49:52 +0000 |
| commit | cc885e42e330158bbc63699ca0c4f557a2e74fd7 (patch) | |
| tree | d3a55eb40d88748fd5313335f3acb50d3fd2dc41 /src/window.h | |
| parent | d793b34947080600b2d0f82e004772138b3a7efa (diff) | |
| download | emacs-cc885e42e330158bbc63699ca0c4f557a2e74fd7.tar.gz emacs-cc885e42e330158bbc63699ca0c4f557a2e74fd7.zip | |
(struct window): New field last_overlay_modified.
Diffstat (limited to 'src/window.h')
| -rw-r--r-- | src/window.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/window.h b/src/window.h index 551c0178505..0b0e0aa256d 100644 --- a/src/window.h +++ b/src/window.h | |||
| @@ -122,6 +122,8 @@ struct window | |||
| 122 | Lisp_Object temslot; | 122 | Lisp_Object temslot; |
| 123 | /* text.modified of displayed buffer as of last time display completed */ | 123 | /* text.modified of displayed buffer as of last time display completed */ |
| 124 | Lisp_Object last_modified; | 124 | Lisp_Object last_modified; |
| 125 | /* BUF_OVERLAY_MODIFIED of displayed buffer as of last complete update. */ | ||
| 126 | Lisp_Object last_overlay_modified; | ||
| 125 | /* Value of point at that time */ | 127 | /* Value of point at that time */ |
| 126 | Lisp_Object last_point; | 128 | Lisp_Object last_point; |
| 127 | /* Non-nil if the buffer was "modified" when the window | 129 | /* Non-nil if the buffer was "modified" when the window |
| @@ -282,6 +284,11 @@ extern int end_unchanged; | |||
| 282 | contain no useful information. */ | 284 | contain no useful information. */ |
| 283 | extern int unchanged_modified; | 285 | extern int unchanged_modified; |
| 284 | 286 | ||
| 287 | /* BUF_OVERLAY_MODIFF of current buffer, as of last redisplay that finished; | ||
| 288 | if it matches BUF_OVERLAY_MODIFF, beg_unchanged and end_unchanged | ||
| 289 | contain no useful information. */ | ||
| 290 | extern int overlay_unchanged_modified; | ||
| 291 | |||
| 285 | /* Nonzero if BEGV - BEG or Z - ZV of current buffer has changed | 292 | /* Nonzero if BEGV - BEG or Z - ZV of current buffer has changed |
| 286 | since last redisplay that finished. */ | 293 | since last redisplay that finished. */ |
| 287 | extern int clip_changed; | 294 | extern int clip_changed; |