commit 8f4ae46c6ef48521747dca81c0811a347584200b
parent c459bff32b0a1bef0baf18ac679ff75ada898c51
Author: Georges Dupéron <georges.duperon@gmail.com>
Date: Tue, 15 May 2018 21:26:37 +0200
Fix incompatibility with Racket 7
The private identifier -make-attribute-mapping got renamed.
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/untyped-only/syntax-parse.rkt b/untyped-only/syntax-parse.rkt
@@ -11,7 +11,8 @@
[(version< (version) "6.90.0.24")
(require (prefix-in - syntax/parse/private/residual))]
[else
- (require (prefix-in - racket/private/template))
+ (require (rename-in (prefix-in - racket/private/template)
+ [-attribute-mapping -make-attribute-mapping]))
(define-for-syntax (-attribute-mapping-syntax? x)
;; attribute-mapping-check is actually false when attribute-mapping-syntax?
;; would have been true (thanks rmculpepper !)