Fix escape sequence in regexp

This commit is contained in:
Suzanne Dupéron 2020-07-23 23:10:05 +01:00 committed by GitHub
parent 6094bbc572
commit 11600d212e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,7 @@
(define-syntax (if-version≥6.12 stx)
(syntax-case stx ()
[(_ . rest)
(if (and (not (regexp-match #px"^6\.11\.0\.900$" (version)))
(if (and (not (regexp-match #px"^6\\.11\\.0\\.900$" (version)))
(or (regexp-match #px"^6(\\.([0123456789]|10|11)(\\..*|)|)$" (version))
(regexp-match #px"^[123245]\\..*$" (version))))
#'(begin)