hush: deindent large block of code, no code changes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2016-11-08 17:34:44 +01:00
parent 1eada9ad8d
commit 5cc9bf6a21

View File

@ -7803,6 +7803,8 @@ static int run_list(struct pipe *pi)
/* Go through list of pipes, (maybe) executing them. */
for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
int r;
if (G.flag_SIGINT)
break;
if (G_flag_return_in_progress == 1)
@ -7953,12 +7955,10 @@ static int run_list(struct pipe *pi)
* after run_pipe to collect any background children,
* even if list execution is to be stopped. */
debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
{
int r;
#if ENABLE_HUSH_LOOPS
G.flag_break_continue = 0;
#endif
rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
rcode = r = run_pipe(pi); /* NB: rcode is a smalluint, r is int */
if (r != -1) {
/* We ran a builtin, function, or group.
* rcode is already known
@ -8021,7 +8021,6 @@ static int run_list(struct pipe *pi)
G.last_exitcode = rcode;
check_and_run_traps();
}
}
/* Analyze how result affects subsequent commands */
#if ENABLE_HUSH_IF