diff --git a/etc/teams.scm.in b/etc/teams.scm.in index 29813e8c6ee..e84e89201dd 100644 --- a/etc/teams.scm.in +++ b/etc/teams.scm.in @@ -53,7 +53,7 @@ "Alternative to `make-regexp' producing annotated objects." (%make-regexp* pat flag (make-regexp pat flag))) -(define (regexp-exec* rx* str) +(define (regexp*-exec rx* str) "Execute the RX* regexp, a object." (regexp-exec (regexp*-rx rx*) str)) @@ -653,8 +653,8 @@ of file names as string." (any (match-lambda ((? string? scope) (string=? scope file)) - ((? regexp? scope) - (regexp-exec scope file))) + ((? regexp*? scope) + (regexp*-exec scope file))) (team-scope team))) files) (cons team acc)