Fix incompatibility with Racket 7

The private identifier -make-attribute-mapping got renamed.
This commit is contained in:
Georges Dupéron 2018-05-15 21:26:37 +02:00
parent c459bff32b
commit 8f4ae46c6e

View File

@ -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 !)