summaryrefslogtreecommitdiff
path: root/Src/input.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/input.c')
-rw-r--r--Src/input.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/input.c b/Src/input.c
index 5cff22da4..9bd9663bf 100644
--- a/Src/input.c
+++ b/Src/input.c
@@ -143,10 +143,12 @@ shingetline(void)
p = buf;
for (;;) {
+ winch_unblock();
do {
errno = 0;
c = fgetc(bshin);
} while (c < 0 && errno == EINTR);
+ winch_block();
if (c < 0 || c == '\n') {
if (c == '\n')
*p++ = '\n';