diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-04-07 20:25:14 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-04-07 20:25:14 +0000 |
commit | 8a54885ec79b3e7e441083e4b2b55609d25222a4 (patch) | |
tree | 8a4c8f22752a005ead898fff272f046e25fa5870 /src/blockinput.h | |
parent | 184ac1f04b0d747d76760737de7cf68282190edf (diff) | |
download | emacs-8a54885ec79b3e7e441083e4b2b55609d25222a4.tar.gz |
(UNBLOCK_INPUT): Fix typo.
Diffstat (limited to 'src/blockinput.h')
-rw-r--r-- | src/blockinput.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blockinput.h b/src/blockinput.h index f02cb5ce85e..0571a648107 100644 --- a/src/blockinput.h +++ b/src/blockinput.h @@ -59,7 +59,7 @@ extern int interrupt_input_pending; #define UNBLOCK_INPUT \ (interrupt_input_blocked--, \ (interrupt_input_blocked < 0 ? (abort (), 0) : 0), \ - ((interrupt_input_blocked == 0 && interupt_input_pending != 0) \ + ((interrupt_input_blocked == 0 && interrupt_input_pending != 0) \ ? (kill (0, SIGIO), 0) \ : 0)) #else |