aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/window.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c
index 0fcf82d43f4..b8281661b4d 100644
--- a/src/window.c
+++ b/src/window.c
@@ -1748,7 +1748,11 @@ if it isn't already recorded. */)
1748 || b->clip_changed 1748 || b->clip_changed
1749 || b->prevent_redisplay_optimizations_p 1749 || b->prevent_redisplay_optimizations_p
1750 || window_outdated (w)) 1750 || window_outdated (w))
1751 && !noninteractive) 1751 /* Don't call display routines if we didn't yet create any real
1752 frames, because the glyph matrices are not yet allocated in
1753 that case. This could happen in some code that runs in the
1754 daemon during initialization (e.g., see bug#20565). */
1755 && !(noninteractive || FRAME_INITIAL_P (WINDOW_XFRAME (w))))
1752 { 1756 {
1753 struct text_pos startp; 1757 struct text_pos startp;
1754 struct it it; 1758 struct it it;