# HG changeset patch # User Andreas Schwab # Date 1110160453 0 # Node ID 3bb3556e7af05a00e14a5efd1da08c8244325b72 # Parent 737e494abed67dac8d820483f60e243fc418c7bb (UNBLOCK_INPUT_TO): Always call UNBLOCK_INPUT. diff -r 737e494abed6 -r 3bb3556e7af0 src/blockinput.h --- a/src/blockinput.h Sun Mar 06 23:39:52 2005 +0000 +++ b/src/blockinput.h Mon Mar 07 01:54:13 2005 +0000 @@ -111,10 +111,8 @@ #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)