From 0eb11080c20797cf19b01bb5983798831ee6f394 Mon Sep 17 00:00:00 2001 From: Carl Eastlund Date: Tue, 18 Oct 2011 16:17:54 -0400 Subject: [PATCH] Fixed a typo (syntax-quote => quote-syntax). (cherry picked from commit bb828c312ffa8d63ee625b1d2492378473c531c3) --- collects/planet/scribble.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/planet/scribble.rkt b/collects/planet/scribble.rkt index f858ee6e92..a03cdf3a4a 100644 --- a/collects/planet/scribble.rkt +++ b/collects/planet/scribble.rkt @@ -86,7 +86,7 @@ (syntax-parser #:literals [unsyntax] [(~and orig (_ (unsyntax e:expr))) #'(racketmodname - (unsyntax `(planet ,(make-planet-symbol (syntax-quote orig) e))))] + (unsyntax `(planet ,(make-planet-symbol (quote-syntax orig) e))))] [(_ suffix:id/this-package) #'(racketmodname (planet suffix.planet-id))]))