Attempt to fix process expansion on Linux

Hopefully addresses https://github.com/fish-shell/fish-shell/issues/455
This commit is contained in:
ridiculousfish
2012-12-18 11:37:54 -08:00
parent f9697c8e36
commit 882a62ad52
2 changed files with 1 additions and 3 deletions

View File

@@ -139,7 +139,7 @@ int fgetws2(wcstring *s, FILE *f)
c = getwc(f);
if (errno == EILSEQ)
if (errno == EILSEQ || errno == EINTR)
{
continue;
}