##// END OF EJS Templates
performance: do not stat() things when not required...
Benoit Boissinot -
r6971:b3bc518a default
parent child Browse files
Show More
@@ -434,12 +434,15 b' class dirstate(object):'
434 434 self._ui.warn(_('%s: unsupported file type (type is %s)\n')
435 435 % (self.pathto(f), kind))
436 436
437 # TODO: don't walk unknown directories if unknown and ignored are False
438 437 ignore = self._ignore
439 438 dirignore = self._dirignore
440 439 if ignored:
441 440 ignore = util.never
442 441 dirignore = util.never
442 elif not unknown:
443 # if unknown and ignored are False, skip step 2
444 ignore = util.always
445 dirignore = util.always
443 446
444 447 matchfn = match.matchfn
445 448 dmap = self._map
General Comments 0
You need to be logged in to leave comments. Login now