aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-09-02 05:11:15 +0000
committerRichard M. Stallman1996-09-02 05:11:15 +0000
commit0dc6f165b8923ea111535563ee1ff7a36306e439 (patch)
tree92eccd82ef702c7d5bf9c19dcc75d86a47d291d2 /src
parent519052f372b65f0f5341cbc622f545a88adf3b10 (diff)
downloademacs-0dc6f165b8923ea111535563ee1ff7a36306e439.tar.gz
emacs-0dc6f165b8923ea111535563ee1ff7a36306e439.zip
(reset_buffer): Initialize last_selected_window slot.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index bfbd175cb16..32a610df6b5 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -471,7 +471,7 @@ reset_buffer (b)
471 b->mark_active = Qnil; 471 b->mark_active = Qnil;
472 b->point_before_scroll = Qnil; 472 b->point_before_scroll = Qnil;
473 b->file_format = Qnil; 473 b->file_format = Qnil;
474 b->extra1 = Qnil; 474 b->last_selected_window = Qnil;
475 b->extra2 = Qnil; 475 b->extra2 = Qnil;
476 b->extra3 = Qnil; 476 b->extra3 = Qnil;
477} 477}