mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-21 17:21:14 -03:00
Attempt to fix process expansion on Linux
Hopefully addresses https://github.com/fish-shell/fish-shell/issues/455
This commit is contained in:
@@ -139,7 +139,7 @@ int fgetws2(wcstring *s, FILE *f)
|
||||
|
||||
c = getwc(f);
|
||||
|
||||
if (errno == EILSEQ)
|
||||
if (errno == EILSEQ || errno == EINTR)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user