aboutsummaryrefslogtreecommitdiffstats
path: root/src/dispnew.c
diff options
context:
space:
mode:
authorJoakim Verona2013-01-23 00:03:32 +0100
committerJoakim Verona2013-01-23 00:03:32 +0100
commit6f0e40ae28faeba85872002eb848debb6bfcb2f5 (patch)
tree1134bfbb02414c992f239247b8c132a0d6d748c6 /src/dispnew.c
parent2adf26f58a2435bcbd7f925f7e1208ceda907520 (diff)
parent9d93ce29bdf8aa277123170ef37f942f87e5073b (diff)
downloademacs-6f0e40ae28faeba85872002eb848debb6bfcb2f5.tar.gz
emacs-6f0e40ae28faeba85872002eb848debb6bfcb2f5.zip
auto upstream
Diffstat (limited to 'src/dispnew.c')
-rw-r--r--src/dispnew.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index 144fa659c47..32ac606b84e 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -609,7 +609,7 @@ adjust_glyph_matrix (struct window *w, struct glyph_matrix *matrix, int x, int y
609 are invalidated below. */ 609 are invalidated below. */
610 if (INTEGERP (w->window_end_vpos) 610 if (INTEGERP (w->window_end_vpos)
611 && XFASTINT (w->window_end_vpos) >= i) 611 && XFASTINT (w->window_end_vpos) >= i)
612 wset_window_end_valid (w, Qnil); 612 w->window_end_valid = 0;
613 613
614 while (i < matrix->nrows) 614 while (i < matrix->nrows)
615 matrix->rows[i++].enabled_p = 0; 615 matrix->rows[i++].enabled_p = 0;
@@ -864,7 +864,7 @@ clear_window_matrices (struct window *w, bool desired_p)
864 else 864 else
865 { 865 {
866 clear_glyph_matrix (w->current_matrix); 866 clear_glyph_matrix (w->current_matrix);
867 wset_window_end_valid (w, Qnil); 867 w->window_end_valid = 0;
868 } 868 }
869 } 869 }
870 870