diff --git a/collects/scribble/text/output.rkt b/collects/scribble/text/output.rkt index 90f6eaa2..fe15fb1c 100644 --- a/collects/scribble/text/output.rkt +++ b/collects/scribble/text/output.rkt @@ -117,6 +117,7 @@ ;; delayed values [(and (procedure? x) (procedure-arity-includes? x 0)) (loop (x))] [(promise? x) (loop (force x))] + [(box? x) (loop (unbox x))] ;; special output wrappers [(special? x) (let ([c (special-contents x)])