aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index bff6218106b..60848f4433e 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -11539,7 +11539,9 @@ display_echo_area_1 (ptrdiff_t a1, Lisp_Object a2)
11539 /* Display. */ 11539 /* Display. */
11540 clear_glyph_matrix (w->desired_matrix); 11540 clear_glyph_matrix (w->desired_matrix);
11541 XSETWINDOW (window, w); 11541 XSETWINDOW (window, w);
11542 void *itdata = bidi_shelve_cache ();
11542 try_window (window, start, 0); 11543 try_window (window, start, 0);
11544 bidi_unshelve_cache (itdata, false);
11543 11545
11544 return window_height_changed_p; 11546 return window_height_changed_p;
11545} 11547}