diff options
| author | Richard M. Stallman | 2007-01-03 23:28:08 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-01-03 23:28:08 +0000 |
| commit | dfc265a31fd11a6d7b0f994959a1cab0909b18dd (patch) | |
| tree | 7671947f265217654f25dcce8a86794bc8612a9e /src | |
| parent | bcd33653aadfc05479d0c98ff9d67797b15bb5a9 (diff) | |
| download | emacs-dfc265a31fd11a6d7b0f994959a1cab0909b18dd.tar.gz emacs-dfc265a31fd11a6d7b0f994959a1cab0909b18dd.zip | |
(Fwindow_end): Check BUF_OVERLAY_MODIFF like BUF_MODIFF.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index babf72c2c52..2a7b5ef6c68 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -1182,7 +1182,8 @@ if it isn't already recorded. */) | |||
| 1182 | 1182 | ||
| 1183 | if (! NILP (update) | 1183 | if (! NILP (update) |
| 1184 | && ! (! NILP (w->window_end_valid) | 1184 | && ! (! NILP (w->window_end_valid) |
| 1185 | && XFASTINT (w->last_modified) >= BUF_MODIFF (b)) | 1185 | && XFASTINT (w->last_modified) >= BUF_MODIFF (b) |
| 1186 | && XFASTINT (w->last_overlay_modified) => BUF_OVERLAY_MODIFF (b)) | ||
| 1186 | && !noninteractive) | 1187 | && !noninteractive) |
| 1187 | { | 1188 | { |
| 1188 | struct text_pos startp; | 1189 | struct text_pos startp; |