]> git.eshelyaron.com Git - emacs.git/commitdiff
(make_window): Initialize height_fixed_p,
authorRichard M. Stallman <rms@gnu.org>
Mon, 22 Apr 2002 15:57:25 +0000 (15:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 22 Apr 2002 15:57:25 +0000 (15:57 +0000)
last_cursor_off_p, and p->cursor_off_p slots.

src/ChangeLog
src/window.c

index f747053047d9c1f48708c6bdbb6143cb75f3e731..8c6bd5af5ee27c514419a4da647f39bd2ad08de5 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-22  Richard M. Stallman  <rms@gnu.org>
+
+       * window.c (make_window): Initialize height_fixed_p,
+       last_cursor_off_p, and p->cursor_off_p slots.
+
 2002-04-20  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
 
        * fns.c (use-dialog-box): Doc fix.
index e88873528c83f574329c8e2692fb4bfb88579a88..4dc8329baf1df3d81c0af84df220e245030fcaab 100644 (file)
@@ -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;