diff options
| author | Jan D | 2015-05-17 16:46:34 +0200 |
|---|---|---|
| committer | Jan D | 2015-05-17 16:46:34 +0200 |
| commit | 6445ee0fb751ae2c1dfef900d44721b3d952812f (patch) | |
| tree | d43006cb93d9ea7b00ea02aabcd5577c41ff827f /src/window.c | |
| parent | f92ac2e82ed199d6f25d2a59508e08addb1150ac (diff) | |
| parent | c9c4708ed47b18987940a71b98eb9873150d2b95 (diff) | |
| download | emacs-6445ee0fb751ae2c1dfef900d44721b3d952812f.tar.gz emacs-6445ee0fb751ae2c1dfef900d44721b3d952812f.zip | |
Merge branch 'master' into cairo
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 6 |
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; |