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 | af56dc7eed8128c5ffb1d6d14d9f74637c796bfa (patch) | |
tree | a80c6fcee77ea92f609b22ab16985e62aa8b2a03 /src | |
parent | f34a4d8dccc817707597edfbcc50071a36112099 (diff) | |
download | emacs-af56dc7eed8128c5ffb1d6d14d9f74637c796bfa.tar.gz |
(UNBLOCK_INPUT): Fix typo.
Diffstat (limited to 'src')
-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 |