aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-10-21 23:14:06 +0000
committerRichard M. Stallman1995-10-21 23:14:06 +0000
commitfb2030e306dc2f8932f03cf8db45c7ee72d8dba7 (patch)
tree05b48588c54b109200cc36fef1c8bfa247c13eeb
parent55ac8536fe9e9aa6aefbae5f5e721eac979ed6f7 (diff)
downloademacs-fb2030e306dc2f8932f03cf8db45c7ee72d8dba7.tar.gz
emacs-fb2030e306dc2f8932f03cf8db45c7ee72d8dba7.zip
(reset_buffer): Initialize extra1, extra2 and extra3 slots.
-rw-r--r--src/buffer.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 13861a8edbb..c533d4343fa 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -457,6 +457,9 @@ reset_buffer (b)
457 b->point_before_scroll = Qnil; 457 b->point_before_scroll = Qnil;
458 b->file_format = Qnil; 458 b->file_format = Qnil;
459 b->redisplay_end_trigger = Qnil; 459 b->redisplay_end_trigger = Qnil;
460 b->extra1 = Qnil;
461 b->extra2 = Qnil;
462 b->extra3 = Qnil;
460} 463}
461 464
462/* Reset buffer B's local variables info. 465/* Reset buffer B's local variables info.