diff options
| author | Richard M. Stallman <rms@gnu.org> | 1995-10-21 23:14:06 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1995-10-21 23:14:06 +0000 |
| commit | fb2030e306dc2f8932f03cf8db45c7ee72d8dba7 (patch) | |
| tree | 05b48588c54b109200cc36fef1c8bfa247c13eeb /src/buffer.c | |
| parent | 55ac8536fe9e9aa6aefbae5f5e721eac979ed6f7 (diff) | |
(reset_buffer): Initialize extra1, extra2 and extra3 slots.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 3 |
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) b->point_before_scroll = Qnil; b->file_format = Qnil; b->redisplay_end_trigger = Qnil; + b->extra1 = Qnil; + b->extra2 = Qnil; + b->extra3 = Qnil; } /* Reset buffer B's local variables info. |
