commit bash-20171110 snapshot

This commit is contained in:
Chet Ramey
2017-11-20 11:42:18 -05:00
parent 5bf9b550c0
commit 5af34ee8a3
9 changed files with 44 additions and 11 deletions
+4 -2
View File
@@ -1356,8 +1356,10 @@ time_command (command, asynchronous, pipe_in, pipe_out, fds_to_close)
command->flags &= ~(CMD_TIME_PIPELINE|CMD_TIME_POSIX);
code = setjmp_nosigs (top_level);
if (code == NOT_JUMPED)
rv = execute_command_internal (command, asynchronous, pipe_in, pipe_out, fds_to_close);
command->flags = old_flags;
{
rv = execute_command_internal (command, asynchronous, pipe_in, pipe_out, fds_to_close);
command->flags = old_flags;
}
COPY_PROCENV (save_top_level, top_level);
rs = us = ss = 0;