aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorJoakim Verona2012-09-28 09:39:13 +0200
committerJoakim Verona2012-09-28 09:39:13 +0200
commitbe25526e5384268a6a834e701a194626ecc3ca53 (patch)
tree8b7f818901e5ccebfdbed0e876eb569f1da8c867 /src/window.c
parenta461dd78ac7ce24cf64025ba7096187f6c58201b (diff)
parent9f7c28f0f65e4658da01c63a35fb8fc4b6b9a215 (diff)
downloademacs-be25526e5384268a6a834e701a194626ecc3ca53.tar.gz
emacs-be25526e5384268a6a834e701a194626ecc3ca53.zip
upstream
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c
index 2589596ccfd..abdee7ec19b 100644
--- a/src/window.c
+++ b/src/window.c
@@ -3463,7 +3463,11 @@ make_window (void)
3463 wset_vertical_scroll_bar_type (w, Qt); 3463 wset_vertical_scroll_bar_type (w, Qt);
3464 wset_window_end_pos (w, make_number (0)); 3464 wset_window_end_pos (w, make_number (0));
3465 wset_window_end_vpos (w, make_number (0)); 3465 wset_window_end_vpos (w, make_number (0));
3466 3466 /* These Lisp fields are marked specially so they're not set to nil by
3467 allocate_window. */
3468 wset_prev_buffers (w, Qnil);
3469 wset_next_buffers (w, Qnil);
3470
3467 /* Initialize non-Lisp data. Note that allocate_window zeroes out all 3471 /* Initialize non-Lisp data. Note that allocate_window zeroes out all
3468 non-Lisp data, so do it only for slots which should not be zero. */ 3472 non-Lisp data, so do it only for slots which should not be zero. */
3469 w->nrows_scale_factor = w->ncols_scale_factor = 1; 3473 w->nrows_scale_factor = w->ncols_scale_factor = 1;