mercurial/context.py
changeset 32395 24245b54aa8a
parent 32349 81936f6462c1
child 32401 284b18303f61
equal deleted inserted replaced
32394:38a2b9d90131 32395:24245b54aa8a
  1593 
  1593 
  1594         # Only a case insensitive filesystem needs magic to translate user input
  1594         # Only a case insensitive filesystem needs magic to translate user input
  1595         # to actual case in the filesystem.
  1595         # to actual case in the filesystem.
  1596         matcherfunc = matchmod.match
  1596         matcherfunc = matchmod.match
  1597         if not util.fscasesensitive(r.root):
  1597         if not util.fscasesensitive(r.root):
  1598             matcherfunc = matchmod.icasefsmatcher
  1598             matcherfunc = matchmod.icasefsmatch
  1599         return matcherfunc(r.root, r.getcwd(), pats,
  1599         return matcherfunc(r.root, r.getcwd(), pats,
  1600                            include, exclude, default,
  1600                            include, exclude, default,
  1601                            auditor=r.auditor, ctx=self,
  1601                            auditor=r.auditor, ctx=self,
  1602                            listsubrepos=listsubrepos, badfn=badfn)
  1602                            listsubrepos=listsubrepos, badfn=badfn)
  1603 
  1603