mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-26 10:43:47 +08:00
Refactor to use has_external_proc instead of a manual loop
No functional change here.
This commit is contained in:
parent
e299f89db3
commit
be9579418f
|
@ -133,12 +133,7 @@ bool job_t::should_report_process_exits() const {
|
|||
}
|
||||
|
||||
// Return whether we have an external process.
|
||||
for (const auto &p : this->processes) {
|
||||
if (p->type == process_type_t::external) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
return this->has_external_proc();
|
||||
}
|
||||
|
||||
bool job_t::job_chain_is_fully_constructed() const { return group->is_root_constructed(); }
|
||||
|
|
Loading…
Reference in New Issue
Block a user