fix type in regexp
This commit is contained in:
parent
73e5192db0
commit
8bf4363a26
|
@ -27,7 +27,7 @@
|
||||||
(define (contains-glob-enumerator? arg)
|
(define (contains-glob-enumerator? arg)
|
||||||
(if-match
|
(if-match
|
||||||
(regexp-search
|
(regexp-search
|
||||||
(rx (: (submatch (* any)) ("{[") (* any) (submatch (* any)) ("})")))
|
(rx (: (submatch (* any)) ("{[") (* any) (submatch (* any)) ("]}")))
|
||||||
arg)
|
arg)
|
||||||
(whole-arg submatch-before submatch-after)
|
(whole-arg submatch-before submatch-after)
|
||||||
(not (or (string-suffix? "\\" submatch-before)
|
(not (or (string-suffix? "\\" submatch-before)
|
||||||
|
|
Loading…
Reference in New Issue