]> git.eshelyaron.com Git - emacs.git/commitdiff
(UNBLOCK_INPUT_TO): Always call UNBLOCK_INPUT.
authorAndreas Schwab <schwab@suse.de>
Mon, 7 Mar 2005 01:54:13 +0000 (01:54 +0000)
committerAndreas Schwab <schwab@suse.de>
Mon, 7 Mar 2005 01:54:13 +0000 (01:54 +0000)
src/blockinput.h

index a3b50d2a0f26b0c51e95aa1a793bbe1a6742dcb2..74ef7603f4020005b8f22c03b9d521fa216f4645 100644 (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)