equal
deleted
inserted
replaced
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 |