Skip to content

Commit 9d421e3

Browse files
committed
Hide cell content when displaying values.
Displaying cell content breaks the Browser on recursive cells. This is the laziest fix, another option would be to add support for celle expansion in the browser, but this would require updating the browser when the content of the cell changes.
1 parent 6c5ac7c commit 9d421e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/vm/main/cell-decl.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public:
7070
// Miscellaneous
7171

7272
void printReprToStream(VM vm, std::ostream& out, int depth, int width) {
73-
out << "<Cell: " << repr(vm, _value, depth, width) << ">";
73+
out << "<Cell>";
7474
}
7575

7676
private:

0 commit comments

Comments
 (0)