diff options
| author | Po Lu | 2022-04-06 08:48:41 +0800 |
|---|---|---|
| committer | Po Lu | 2022-04-06 08:48:41 +0800 |
| commit | 2aa588f016239e8fef3aeec97df7285f81b7f80b (patch) | |
| tree | 18578c996b78e700a791c1b997cf0d31621f7371 /src | |
| parent | 743a95f8139fb30705352d721f17ff3217e460b6 (diff) | |
| download | emacs-2aa588f016239e8fef3aeec97df7285f81b7f80b.tar.gz emacs-2aa588f016239e8fef3aeec97df7285f81b7f80b.zip | |
* src/xterm.c (handle_one_xevent): Assert that hold_quit is present instead.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xterm.c b/src/xterm.c index 42ab90df751..37bbd5d7e1c 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -13826,8 +13826,9 @@ handle_one_xevent (struct x_display_info *dpyinfo, | |||
| 13826 | 13826 | ||
| 13827 | if (x_dnd_in_progress || x_dnd_waiting_for_finish) | 13827 | if (x_dnd_in_progress || x_dnd_waiting_for_finish) |
| 13828 | { | 13828 | { |
| 13829 | if (hold_quit) | 13829 | eassert (hold_quit); |
| 13830 | *hold_quit = inev.ie; | 13830 | |
| 13831 | *hold_quit = inev.ie; | ||
| 13831 | EVENT_INIT (inev.ie); | 13832 | EVENT_INIT (inev.ie); |
| 13832 | } | 13833 | } |
| 13833 | 13834 | ||