mercurial/dirstate.py
changeset 6971 b3bc518a73c3
parent 6834 cbdfd08eabc9
child 6972 63d1d3e489f8
--- a/mercurial/dirstate.py	Tue Sep 02 09:47:40 2008 +0200
+++ b/mercurial/dirstate.py	Tue Sep 02 15:08:26 2008 +0200
@@ -434,12 +434,15 @@
             self._ui.warn(_('%s: unsupported file type (type is %s)\n')
                           % (self.pathto(f), kind))
 
-        # TODO: don't walk unknown directories if unknown and ignored are False
         ignore = self._ignore
         dirignore = self._dirignore
         if ignored:
             ignore = util.never
             dirignore = util.never
+        elif not unknown:
+            # if unknown and ignored are False, skip step 2
+            ignore = util.always
+            dirignore = util.always
 
         matchfn = match.matchfn
         dmap = self._map