aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2002-04-22 15:57:25 +0000
committerRichard M. Stallman <[email protected]>2002-04-22 15:57:25 +0000
commit6b448755e6bd8d1aa88716235710fa734b4364ba (patch)
tree9478657a99fbbe2d98a5aaba0491d6cd0eb36aac
parente5ba1eb9ef811355ad922f17c61a0fb006a2db1a (diff)
(make_window): Initialize height_fixed_p,
last_cursor_off_p, and p->cursor_off_p slots.
-rw-r--r--src/ChangeLog5
-rw-r--r--src/window.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f747053047..8c6bd5af5e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-22 Richard M. Stallman <[email protected]>
+
+ * 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 <[email protected]>
* fns.c (use-dialog-box): Doc fix.
diff --git a/src/window.c b/src/window.c
index e88873528c..4dc8329baf 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;