diff options
| author | Richard M. Stallman | 1997-04-26 04:46:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-04-26 04:46:29 +0000 |
| commit | 8b264726b18643f00e08c6df8e4679da8fe02e6c (patch) | |
| tree | 54cefed15678cc68377a6b5335b2b62fa8acb5d6 /src/buffer.c | |
| parent | fa2795ca04029bde1df7a513262d3b5c064c8b92 (diff) | |
| download | emacs-8b264726b18643f00e08c6df8e4679da8fe02e6c.tar.gz emacs-8b264726b18643f00e08c6df8e4679da8fe02e6c.zip | |
(reset_buffer): Initialize clip_changed field.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c index 8eef44c2555..343686d43f1 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -465,6 +465,8 @@ reset_buffer (b) | |||
| 465 | b->modtime = 0; | 465 | b->modtime = 0; |
| 466 | XSETFASTINT (b->save_length, 0); | 466 | XSETFASTINT (b->save_length, 0); |
| 467 | b->last_window_start = 1; | 467 | b->last_window_start = 1; |
| 468 | /* It is more conservative to start out "changed" than "unchanged". */ | ||
| 469 | b->clip_changed = 1; | ||
| 468 | b->backed_up = Qnil; | 470 | b->backed_up = Qnil; |
| 469 | b->auto_save_modified = 0; | 471 | b->auto_save_modified = 0; |
| 470 | b->auto_save_failure_time = -1; | 472 | b->auto_save_failure_time = -1; |