commit bash-20130125 snapshot

This commit is contained in:
Chet Ramey
2013-02-05 16:44:34 -05:00
parent f0c4de40a4
commit 1a81420a36
25 changed files with 421 additions and 66 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ zread (fd, buf, len)
ssize_t r;
while ((r = read (fd, buf, len)) < 0 && errno == EINTR)
check_signals_and_traps (); /* XXX */
check_signals_and_traps (); /* XXX - should it be check_signals()? */
return r;
}