(UNBLOCK_INPUT_TO): Always call UNBLOCK_INPUT.

This commit is contained in:
Andreas Schwab 2005-03-07 01:54:13 +00:00
parent 285d5fe65b
commit c71fd7b702

View file

@ -111,10 +111,8 @@ extern int pending_atimers;
#define UNBLOCK_INPUT_TO(LEVEL) \
do \
{ \
int oldlevel = interrupt_input_blocked; \
interrupt_input_blocked = (LEVEL) + 1; \
if (interrupt_input_blocked != oldlevel + 1) \
UNBLOCK_INPUT; \
UNBLOCK_INPUT; \
} \
while (0)