1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-08 20:58:58 +00:00

(TOTALLY_UNBLOCK_INPUT): Avoid dangling else.

This commit is contained in:
Kim F. Storm 2005-03-07 10:49:51 +00:00
parent 2e87e8f207
commit 6bf40bf022

View File

@ -98,12 +98,12 @@ extern int pending_atimers;
and also reinvoke any pending signal. */
#define TOTALLY_UNBLOCK_INPUT \
if (interrupt_input_blocked != 0) \
do if (interrupt_input_blocked != 0) \
{ \
interrupt_input_blocked = 1; \
UNBLOCK_INPUT; \
} \
else
while (0)
/* Undo any number of BLOCK_INPUT calls down to level LEVEL,
and also (if the level is now 0) reinvoke any pending signal. */