Mercurial > public > mercurial-scm > hg
diff mercurial/match.py @ 16182:bd12ef347680
match: consider filesets as "anypats"
Matt suggested this on IRC, I do not think the choice is obvious, but this one
makes things simpler because while filesets are turned into a list of files
into the match objects, it would more be difficult to tell invalid files passed
in pats from those expanded from filesets.
author | Patrick Mezard <patrick@mezard.eu> |
---|---|
date | Sun, 26 Feb 2012 17:10:55 +0100 |
parents | d5f774668102 |
children | 9a21fc2c7d32 c17ce7cd5090 |
line wrap: on
line diff
--- a/mercurial/match.py Sun Feb 26 17:10:51 2012 +0100 +++ b/mercurial/match.py Sun Feb 26 17:10:55 2012 +0100 @@ -333,5 +333,5 @@ def _anypats(patterns): for kind, name in patterns: - if kind in ('glob', 're', 'relglob', 'relre'): + if kind in ('glob', 're', 'relglob', 'relre', 'set'): return True