aboutsummaryrefslogtreecommitdiffstats
path: root/src/blockinput.h
diff options
context:
space:
mode:
authorRichard M. Stallman1993-04-07 20:25:14 +0000
committerRichard M. Stallman1993-04-07 20:25:14 +0000
commitaf56dc7eed8128c5ffb1d6d14d9f74637c796bfa (patch)
treea80c6fcee77ea92f609b22ab16985e62aa8b2a03 /src/blockinput.h
parentf34a4d8dccc817707597edfbcc50071a36112099 (diff)
downloademacs-af56dc7eed8128c5ffb1d6d14d9f74637c796bfa.tar.gz
emacs-af56dc7eed8128c5ffb1d6d14d9f74637c796bfa.zip
(UNBLOCK_INPUT): Fix typo.
Diffstat (limited to 'src/blockinput.h')
-rw-r--r--src/blockinput.h2
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;
59#define UNBLOCK_INPUT \ 59#define UNBLOCK_INPUT \
60 (interrupt_input_blocked--, \ 60 (interrupt_input_blocked--, \
61 (interrupt_input_blocked < 0 ? (abort (), 0) : 0), \ 61 (interrupt_input_blocked < 0 ? (abort (), 0) : 0), \
62 ((interrupt_input_blocked == 0 && interupt_input_pending != 0) \ 62 ((interrupt_input_blocked == 0 && interrupt_input_pending != 0) \
63 ? (kill (0, SIGIO), 0) \ 63 ? (kill (0, SIGIO), 0) \
64 : 0)) 64 : 0))
65#else 65#else