1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-30 07:10:58 +02:00

zsh-workers/9522

This commit is contained in:
Tanaka Akira 2000-02-02 08:40:51 +00:00
parent c931efdf3c
commit 40a295bdf9

View file

@ -1300,7 +1300,7 @@ read1char(void)
char c;
while (read(SHTTY, &c, 1) != 1) {
if (errno != EINTR || errflag)
if (errno != EINTR || errflag || retflag || breaks || contflag)
return -1;
}
return STOUC(c);