From b1375546584fa1ff1b1ed7a4a78840e1efd39c96 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Sun, 28 Oct 2018 15:01:55 -0700 Subject: [PATCH] style --- txexpr/main.rkt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/txexpr/main.rkt b/txexpr/main.rkt index 49f07ca..29f423c 100644 --- a/txexpr/main.rkt +++ b/txexpr/main.rkt @@ -1,13 +1,13 @@ #lang racket/base -(define-syntax-rule (r+p modname ...) +(define-syntax-rule (r+p MODNAME ...) (begin (begin - (require modname) - (provide (all-from-out modname)) + (require MODNAME) + (provide (all-from-out MODNAME)) (module+ safe - (require (submod modname safe)) - (provide (all-from-out (submod modname safe))))) ...)) + (require (submod MODNAME safe)) + (provide (all-from-out (submod MODNAME safe))))) ...)) (r+p "base.rkt" "stx.rkt"