commit 7a4e03feb3c8f704f7cd04c18b20e42df157c358 parent 961d507fa9171362bced8e3f14f3e0fba99f7792 Author: Georges Dupéron <georges.duperon@gmail.com> Date: Thu, 26 Jan 2017 17:16:57 +0100 Reprovide stxparse-info/parse and stxparse-info/case in subtemplate/override. Diffstat:
| M | override.rkt | | | 10 | +++++++--- |
| M | scribblings/subtemplate.scrbl | | | 4 | ++++ |
2 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/override.rkt b/override.rkt @@ -1,5 +1,9 @@ #lang racket (require (rename-in subtemplate [subtemplate syntax] - [quasisubtemplate quasisyntax])) -(provide (all-from-out subtemplate)) -\ No newline at end of file + [quasisubtemplate quasisyntax]) + stxparse-info/parse + stxparse-info/case) +(provide (all-from-out subtemplate + stxparse-info/parse + stxparse-info/case)) +\ No newline at end of file diff --git a/scribblings/subtemplate.scrbl b/scribblings/subtemplate.scrbl @@ -44,3 +44,6 @@ The @racketmodname[subtemplate/override] module re-provides @racket[subtemplate] as @racket[syntax], and @racket[quasisubtemplate] as @racket[quasisyntax]. This allows @racketmodname[subtemplate] to be used via the reader shorthands @racket[#'…] and @racket[#`…]. + +The @racketmodname[subtemplate/override] module also re-provides +@racketmodname[stxparse-info/parse] and @racketmodname[stxparse-info/case]. +\ No newline at end of file