mercurial/ignore.py
changeset 5268 fae670ee6c6d
parent 5029 ac97e065cfc7
equal deleted inserted replaced
5267:b962f82cfd61 5268:fae670ee6c6d
    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