Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/boot/lib/intrinsics.ml
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,7 @@ module IO = struct
else if Obj.tag v = Obj.double_tag then
string_of_float (Obj.obj v) ^ "\n"
else if Obj.tag v = Obj.closure_tag then "<closure>\n"
else if Obj.tag v = Obj.infix_tag then "<infix>\n"
else if Obj.tag v = Obj.unaligned_tag then "<unaligned>\n"
else
let istr = String.make indent ' ' in
Expand Down
Loading