diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-04-22 15:57:25 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-04-22 15:57:25 +0000 |
commit | 6b448755e6bd8d1aa88716235710fa734b4364ba (patch) | |
tree | 9478657a99fbbe2d98a5aaba0491d6cd0eb36aac /src/window.c | |
parent | e5ba1eb9ef811355ad922f17c61a0fb006a2db1a (diff) | |
download | emacs-6b448755e6bd8d1aa88716235710fa734b4364ba.tar.gz |
(make_window): Initialize height_fixed_p,
last_cursor_off_p, and p->cursor_off_p slots.
Diffstat (limited to 'src/window.c')
-rw-r--r-- | src/window.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c index e88873528c8..4dc8329baf1 100644 --- a/src/window.c +++ b/src/window.c @@ -287,6 +287,8 @@ make_window () XSETWINDOW (val, p); XSETFASTINT (p->last_point, 0); p->frozen_window_start_p = 0; + p->height_fixed_p = 0; + p->last_cursor_off_p = p->cursor_off_p = 0; Vwindow_list = Qnil; return val; |