aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 3c9e0222a82..2278c05c60c 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -6974,9 +6974,14 @@ clear_garbaged_frames ()
6974 6974
6975 if (FRAME_VISIBLE_P (f) && FRAME_GARBAGED_P (f)) 6975 if (FRAME_VISIBLE_P (f) && FRAME_GARBAGED_P (f))
6976 { 6976 {
6977 if (f->resized_p)
6978 {
6979 Fredraw_frame (frame);
6980 fprintf (stderr, "redraw frame\n");
6981 }
6977 clear_current_matrices (f); 6982 clear_current_matrices (f);
6978 f->garbaged = 0; 6983 f->garbaged = 0;
6979 Fredraw_frame (frame); 6984 f->resized_p = 0;
6980 } 6985 }
6981 } 6986 }
6982 6987