Fix formatting issues

This commit is contained in:
Joe Taber
2023-11-11 13:33:19 -06:00
parent 8570f119c0
commit f704fcb41d
3 changed files with 11 additions and 13 deletions

View File

@@ -296,12 +296,12 @@ impl DebrayAllocator {
self.mark_var_in_non_callable(var_num, term_loc, vr, code);
temp_v!(arg)
} else {
match &self.var_data.records[var_num].allocation {
VarAlloc::Perm(_, PermVarAllocation::Pending) => {
self.mark_var_in_non_callable(var_num, term_loc, vr, code);
}
_ => {}
}
match &self.var_data.records[var_num].allocation {
VarAlloc::Perm(_, PermVarAllocation::Pending) => {
self.mark_var_in_non_callable(var_num, term_loc, vr, code);
}
_ => {}
}
self.increment_running_count(var_num);
RegType::Perm(p)