shrink scope of control_entry_point catch, add CutPoint tag to printer

This commit is contained in:
Mark
2023-07-05 14:50:38 -06:00
parent 5b81bee941
commit 5ffdd2d91a
2 changed files with 5 additions and 12 deletions

View File

@@ -1532,7 +1532,7 @@ impl<'a, Outputter: HCValueOutputter> HCPrinter<'a, Outputter> {
});
}
}
(HeapCellValueTag::Fixnum, n) => {
(HeapCellValueTag::Fixnum | HeapCellValueTag::CutPoint, n) => {
self.print_number(max_depth, NumberFocus::Unfocused(Number::Fixnum(n)), &op);
}
(HeapCellValueTag::F64, f) => {