diff options
| author | Gregory Heytings | 2022-07-19 23:30:17 +0200 |
|---|---|---|
| committer | Gregory Heytings | 2022-07-19 23:30:17 +0200 |
| commit | c6bee1707523549ce02eadb506f54e9089ea1a3f (patch) | |
| tree | 56ca9b74d59eb3c4053d1a700cb867d05610bb39 /src/buffer.h | |
| parent | 9a894206f6990eb5e0edc464dae02700a33d2348 (diff) | |
| download | emacs-c6bee1707523549ce02eadb506f54e9089ea1a3f.tar.gz emacs-c6bee1707523549ce02eadb506f54e9089ea1a3f.zip | |
Revert commits 1ff69cc744 and 9a894206f6.
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/buffer.h b/src/buffer.h index c2dca0a10c1..09daa29992a 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -144,9 +144,6 @@ enum { BEG = 1, BEG_BYTE = BEG }; | |||
| 144 | #define BUF_UNCHANGED_MODIFIED(buf) \ | 144 | #define BUF_UNCHANGED_MODIFIED(buf) \ |
| 145 | ((buf)->text->unchanged_modified) | 145 | ((buf)->text->unchanged_modified) |
| 146 | 146 | ||
| 147 | #define BUF_UNCHANGED_SIZE(buf) \ | ||
| 148 | ((buf)->text->unchanged_size) | ||
| 149 | |||
| 150 | #define BUF_OVERLAY_UNCHANGED_MODIFIED(buf) \ | 147 | #define BUF_OVERLAY_UNCHANGED_MODIFIED(buf) \ |
| 151 | ((buf)->text->overlay_unchanged_modified) | 148 | ((buf)->text->overlay_unchanged_modified) |
| 152 | #define BUF_BEG_UNCHANGED(buf) ((buf)->text->beg_unchanged) | 149 | #define BUF_BEG_UNCHANGED(buf) ((buf)->text->beg_unchanged) |
| @@ -270,9 +267,6 @@ struct buffer_text | |||
| 270 | end_unchanged contain no useful information. */ | 267 | end_unchanged contain no useful information. */ |
| 271 | modiff_count overlay_unchanged_modified; | 268 | modiff_count overlay_unchanged_modified; |
| 272 | 269 | ||
| 273 | /* Buffer size as of last redisplay that finished. */ | ||
| 274 | ptrdiff_t unchanged_size; | ||
| 275 | |||
| 276 | /* Properties of this buffer's text. */ | 270 | /* Properties of this buffer's text. */ |
| 277 | INTERVAL intervals; | 271 | INTERVAL intervals; |
| 278 | 272 | ||