Mercurial > emacs
diff src/blockinput.h @ 60474:3bb3556e7af0
(UNBLOCK_INPUT_TO): Always call UNBLOCK_INPUT.
| author | Andreas Schwab <schwab@suse.de> |
|---|---|
| date | Mon, 07 Mar 2005 01:54:13 +0000 |
| parents | 306f7ce8d80d |
| children | 335c6a2f0c12 |
line wrap: on
line diff
--- 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)
