From 757168e2c8af374436108266cc3cfd32a946a590 Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Tue, 16 Jan 2001 13:44:18 +0000 Subject: remove 13108 (trap queues); replace with signal queueing to ensure that user signal handlers are only executed when it is safe to run them (13365) --- Src/input.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Src/input.c') diff --git a/Src/input.c b/Src/input.c index e82d25011..8f33e3631 100644 --- a/Src/input.c +++ b/Src/input.c @@ -141,9 +141,7 @@ shingetline(void) for (;;) { do { errno = 0; - ALLOWTRAPS { - c = fgetc(bshin); - } DISALLOWTRAPS; + c = fgetc(bshin); } while (c < 0 && errno == EINTR); if (c < 0 || c == '\n') { if (c == '\n') -- cgit v1.2.3