From 7836e422e46721290c076969b87e277aa264ceca Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 23 Oct 2015 23:06:57 +0300 Subject: [PATCH] Fix infloop in redisplay introduced by a recent change * src/xdisp.c (redisplay_internal): Avoid inflooping when redisplaying the selected window sets the selected frame's redisplay flag. (Bug#21745) --- src/xdisp.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/xdisp.c b/src/xdisp.c index bfd3a8299ad..02388da994b 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -13925,7 +13925,11 @@ redisplay_internal (void) above caused some change (e.g., a change in faces) that requires considering the entire frame again. */ if (sf->fonts_changed || sf->redisplay) - goto retry; + { + if (sf->redisplay) + windows_or_buffers_changed = 50; + goto retry; + } /* Prevent freeing of realized faces, since desired matrices are pending that reference the faces we computed and cached. */ -- 2.39.5