From 7c24f19675324a2966f426d8d7646519e8c2fba7 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Wed, 2 Dec 2009 04:57:25 +0000 Subject: [PATCH] what used to not work now works svn: r17157 --- collects/scheme/private/at-syntax.ss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/collects/scheme/private/at-syntax.ss b/collects/scheme/private/at-syntax.ss index 4753d40918..e6130c473e 100644 --- a/collects/scheme/private/at-syntax.ss +++ b/collects/scheme/private/at-syntax.ss @@ -49,12 +49,12 @@ And another example, creating a macro for syntax-time expressions: but the `quote' here is a hint that this can get 3d values into syntax, and all the problems that are involved. Also, note that it -breaks if you try to do something like: +even works if you try to do something like: > (compile-time-value (begin (set! x 11) x)) - 8 + 11 -(and, of course, it cannot be used to define new bindings). +(but, of course, it cannot be used to define new bindings). |#