Mercurial > emacs
changeset 2477:4d0d858bc33f
(UNBLOCK_INPUT): Fix typo.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 07 Apr 1993 20:25:14 +0000 |
parents | 11bc604c077f |
children | fb350430116e |
files | src/blockinput.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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