##// END OF EJS Templates
dirstate: avoid match.files() in walk()
Martin von Zweigbergk -
r25234:3c346969 default
parent child Browse files
Show More
@@ -759,7 +759,7 b' class dirstate(object):'
759 759 if match.isexact(): # match.exact
760 760 exact = True
761 761 dirignore = util.always # skip step 2
762 elif match.files() and not match.anypats(): # match.match, no patterns
762 elif match.prefix(): # match.match, no patterns
763 763 skipstep3 = True
764 764
765 765 if not exact and self._checkcase:
General Comments 0
You need to be logged in to leave comments. Login now