From: Richard M. Stallman Date: Mon, 22 Apr 2002 15:57:25 +0000 (+0000) Subject: (make_window): Initialize height_fixed_p, X-Git-Tag: ttn-vms-21-2-B4~15484 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6b448755e6bd8d1aa88716235710fa734b4364ba;p=emacs.git (make_window): Initialize height_fixed_p, last_cursor_off_p, and p->cursor_off_p slots. --- diff --git a/src/ChangeLog b/src/ChangeLog index f747053047d..8c6bd5af5ee 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2002-04-22 Richard M. Stallman + + * window.c (make_window): Initialize height_fixed_p, + last_cursor_off_p, and p->cursor_off_p slots. + 2002-04-20 Pavel Jan,Bm(Bk * fns.c (use-dialog-box): Doc fix. 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;