oops, we accidentally commented out the rline-less fgets call

This commit is contained in:
K. Lange 2021-01-21 21:24:35 +09:00
parent 070a11b461
commit a69ee8efca

View File

@ -499,7 +499,7 @@ _finishArgs:
break;
}
} else {
#else
#endif
char * out = fgets(buf, 4096, stdin);
if (!out || !strlen(buf)) {
fprintf(stdout, "^D\n");
@ -507,7 +507,6 @@ _finishArgs:
exitRepl = 1;
break;
}
#endif
#ifndef NO_RLINE
}
#endif