##// END OF EJS Templates
Non-grouping regex for ignore...
Matt Mackall -
r652:a54a1c10 default
parent child Browse files
Show More
@@ -507,7 +507,7 b' class localrepository:'
507 507 bigpat.append(util.pconvert(pat[:-1]))
508 508 except IOError: pass
509 509 if bigpat:
510 s = "(%s)" % (")|(".join(bigpat))
510 s = "(?:%s)" % (")|(?:".join(bigpat))
511 511 r = re.compile(s)
512 512 self.ignorefunc = r.search
513 513 else:
General Comments 0
You need to be logged in to leave comments. Login now