mercurial/ignore.py
changeset 8567 fea40a677d43
parent 8566 744d6322b05b
child 9091 79a886bcf461
--- a/mercurial/ignore.py	Sun May 24 02:56:14 2009 -0500
+++ b/mercurial/ignore.py	Sun May 24 02:56:14 2009 -0500
@@ -80,12 +80,12 @@
         return util.never
 
     try:
-        ignorefunc = match.match(root, '', [], allpats, [], 'glob')
+        ignorefunc = match.match(root, '', [], allpats)
     except util.Abort:
         # Re-raise an exception where the src is the right file
         for f, patlist in pats.iteritems():
             try:
-                match.match(root, '', [], patlist, [], 'glob')
+                match.match(root, '', [], patlist)
             except util.Abort, inst:
                 raise util.Abort('%s: %s' % (f, inst[0]))