mercurial/manifest.py
changeset 25276 c436ba9d6ac0
parent 25222 0de132d5328a
child 26199 5411059d93f8
--- a/mercurial/manifest.py	Tue May 19 10:40:40 2015 -0700
+++ b/mercurial/manifest.py	Tue May 19 11:16:20 2015 -0700
@@ -219,7 +219,7 @@
         files instead of over manifest files.'''
         files = match.files()
         return (len(files) < 100 and (match.isexact() or
-            (not match.anypats() and all(fn in self for fn in files))))
+            (match.prefix() and all(fn in self for fn in files))))
 
     def walk(self, match):
         '''Generates matching file names.