diff options
| author | Richard M. Stallman | 1996-09-16 09:32:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-09-16 09:32:54 +0000 |
| commit | 2509d35657414f76c27a8c6c8d5302acaad11ecd (patch) | |
| tree | f8d479b65afc814fceaa3e3dad2a074ebe0ee94e /src/buffer.c | |
| parent | da6b134ca1d379ec0580341723bbbacb7895686f (diff) | |
| download | emacs-2509d35657414f76c27a8c6c8d5302acaad11ecd.tar.gz emacs-2509d35657414f76c27a8c6c8d5302acaad11ecd.zip | |
(Fget_buffer_create): Initialize BUF_OVERLAY_MODIFF.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c index def9c1041dc..6b59badadb1 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -313,6 +313,7 @@ The value is never nil.") | |||
| 313 | BUF_ZV (b) = 1; | 313 | BUF_ZV (b) = 1; |
| 314 | BUF_Z (b) = 1; | 314 | BUF_Z (b) = 1; |
| 315 | BUF_MODIFF (b) = 1; | 315 | BUF_MODIFF (b) = 1; |
| 316 | BUF_OVERLAY_MODIFF (b) = 1; | ||
| 316 | BUF_SAVE_MODIFF (b) = 1; | 317 | BUF_SAVE_MODIFF (b) = 1; |
| 317 | BUF_INTERVALS (b) = 0; | 318 | BUF_INTERVALS (b) = 0; |
| 318 | 319 | ||