commit bash-20190614 snapshot

This commit is contained in:
Chet Ramey
2019-06-17 11:20:22 -04:00
parent f602910792
commit 55efd63c03
5 changed files with 157 additions and 108 deletions
+5 -1
View File
@@ -2929,6 +2929,8 @@ execute_for_command (for_command)
if (ifsname (identifier))
setifs (v);
else
stupidly_hack_special_variables (identifier);
retval = execute_command (for_command->action);
REAP ();
@@ -3428,6 +3430,8 @@ execute_select_command (select_command)
}
}
stupidly_hack_special_variables (identifier);
retval = execute_command (select_command->action);
REAP ();
@@ -4368,7 +4372,7 @@ execute_simple_command (simple_command, pipe_in, pipe_out, async, fds_to_close)
begin_unwind_frame ("simple-command");
if (echo_command_at_execute)
if (echo_command_at_execute && (simple_command->flags & CMD_COMMAND_BUILTIN) == 0)
xtrace_print_word_list (words, 1);
builtin = (sh_builtin_func_t *)NULL;