From ba1b4cd243c80f0476807a05e029850c2133acc4 Mon Sep 17 00:00:00 2001 From: Greg Hendershott Date: Tue, 30 Oct 2012 18:12:06 -0400 Subject: [PATCH] Un-italicize datum. --- main.rkt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.rkt b/main.rkt index de1cba3..e3901e5 100644 --- a/main.rkt +++ b/main.rkt @@ -754,9 +754,9 @@ Stepper. It says now we're expanding to: ] Oh right: @racket[#'a] and @racket[#'b] are syntax objects, and -@racket[format] is printing them as such. Instead we want the datum -inside the syntax object, the symbol @racket[foo] and -@racket[bar]. To get that, we use @racket[syntax->datum]: +@racket[format] is printing them as such. Instead we want the datum in +the syntax objects (the symbols @racket[foo] and @racket[bar]). Let's +use @racket[syntax->datum]: @i[ (define-syntax (hyphen-define/ok1 stx)