Avoid assertion violations in echo_area_display
* src/xdisp.c (echo_area_display): Don't try redisplaying the echo area if the selected-frame's mini-window is nil. (Bug#27647)
This commit is contained in:
parent
63c773399e
commit
319c2de9da
1 changed files with 3 additions and 0 deletions
|
@ -11510,6 +11510,9 @@ echo_area_display (bool update_frame_p)
|
|||
struct frame *sf = SELECTED_FRAME ();
|
||||
|
||||
mini_window = FRAME_MINIBUF_WINDOW (sf);
|
||||
if (NILP (mini_window))
|
||||
return;
|
||||
|
||||
w = XWINDOW (mini_window);
|
||||
f = XFRAME (WINDOW_FRAME (w));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue