# HG changeset patch # User Richard M. Stallman # Date 734214314 0 # Node ID 4d0d858bc33fdd2c90f0bf235b6d7c41282da123 # Parent 11bc604c077f5ec4c47deebeef6fbf1f72d87784 (UNBLOCK_INPUT): Fix typo. diff -r 11bc604c077f -r 4d0d858bc33f src/blockinput.h --- a/src/blockinput.h Wed Apr 07 20:14:29 1993 +0000 +++ b/src/blockinput.h Wed Apr 07 20:25:14 1993 +0000 @@ -59,7 +59,7 @@ #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