diff --git a/collects/tests/scribble/text/i11.ss b/collects/tests/scribble/text/i11.ss index f3788aa5fd..558c6a224e 100644 --- a/collects/tests/scribble/text/i11.ss +++ b/collects/tests/scribble/text/i11.ss @@ -1,7 +1,13 @@ #!/bin/env mzscheme #lang scribble/text +@(define (block x) + @splice{{ + blah(@x); + }}) + start - @splice{x y - z} + @splice{foo(); + loop:} + @list{if (something) @block{stuff}} end diff --git a/collects/tests/scribble/text/o11.txt b/collects/tests/scribble/text/o11.txt index 1a91ed7b09..46bef0f064 100644 --- a/collects/tests/scribble/text/o11.txt +++ b/collects/tests/scribble/text/o11.txt @@ -1,4 +1,7 @@ start - x y -z + foo(); +loop: + if (something) { + blah(stuff); + } end