* src/xterm.c (handle_one_xevent): Assert that hold_quit is present instead.

This commit is contained in:
Po Lu 2022-04-06 08:48:41 +08:00
parent 743a95f813
commit 2aa588f016

View file

@ -13826,8 +13826,9 @@ handle_one_xevent (struct x_display_info *dpyinfo,
if (x_dnd_in_progress || x_dnd_waiting_for_finish)
{
if (hold_quit)
*hold_quit = inev.ie;
eassert (hold_quit);
*hold_quit = inev.ie;
EVENT_INIT (inev.ie);
}