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