allow break within loop ... end

This commit is contained in:
Kelvin Sherlock 2022-11-23 18:26:30 -05:00
parent 298c601300
commit f799eb6d81
1 changed files with 1 additions and 1 deletions

View File

@ -716,7 +716,7 @@ int loop_command::execute(Environment &env, const fdmask &fds, bool throwup) {
if (control_c) throw execution_of_input_terminated();
try {
env.indent_and([&]{
env.loop_indent_and([&]{
rv = vector_command::execute(env, newfds);
});
}