From: Andreas Schwab Date: Mon, 7 Mar 2005 01:54:13 +0000 (+0000) Subject: (UNBLOCK_INPUT_TO): Always call UNBLOCK_INPUT. X-Git-Tag: ttn-vms-21-2-B4~1918 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c71fd7b702190b66fc4de6e66192c71aea401f10;p=emacs.git (UNBLOCK_INPUT_TO): Always call UNBLOCK_INPUT. --- diff --git a/src/blockinput.h b/src/blockinput.h index a3b50d2a0f2..74ef7603f40 100644 --- a/src/blockinput.h +++ b/src/blockinput.h @@ -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)