commit 79e74d3b59ab9a690a9f856f1e7387f0836c347b
parent 468744bdf592c181eb8ae3de67a291bb6426a065
Author: Robby Findler <robby@racket-lang.org>
Date: Thu, 17 Mar 2016 09:07:58 -0500
add (hopefully correct) missing case to the contract/bluebox renderer
closes #34
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/scribble-lib/scribble/contract-render.rkt b/scribble-lib/scribble/contract-render.rkt
@@ -76,7 +76,9 @@
[(table style cells)
(check-and-continue style block mode index-table r-blockss+cont cells)]
[(delayed-block resolve)
- (r-block (delayed-block-blocks block (the-ri)) mode index-table)]))
+ (r-block (delayed-block-blocks block (the-ri)) mode index-table)]
+ [(traverse-block _)
+ (r-block (traverse-block-block block (the-ri)) mode index-table)]))
(define (check-and-continue style block mode index-table sub-f sub-p)
(cond