mercurial/ignore.py
changeset 5344 cc34be74eeec
parent 5268 fae670ee6c6d
equal deleted inserted replaced
5343:26692d08c2f9 5344:cc34be74eeec
    83         for f, patlist in pats.items():
    83         for f, patlist in pats.items():
    84             files, ignorefunc, anypats = (
    84             files, ignorefunc, anypats = (
    85                 util.matcher(root, inc=patlist, src=f))
    85                 util.matcher(root, inc=patlist, src=f))
    86 
    86 
    87     return ignorefunc
    87     return ignorefunc
    88 
       
    89 
       
    90     '''default match function used by dirstate and
       
    91     localrepository.  this honours the repository .hgignore file
       
    92     and any other files specified in the [ui] section of .hgrc.'''
       
    93