Submitter | Pierre-Yves David |
---|---|
Date | Oct. 17, 2014, 5:49 p.m. |
Message ID | <427727cdc4c2d6f06c2e.1413568171@marginatus.alto.octopoid.net> |
Download | mbox | patch |
Permalink | /patch/6376/ |
State | Deferred |
Headers | show |
Comments
Patch
diff --git a/mercurial/revset.py b/mercurial/revset.py --- a/mercurial/revset.py +++ b/mercurial/revset.py @@ -1379,11 +1379,11 @@ def matching(repo, subset, x): specified. You can match more than one field at a time. """ # i18n: "matching" is a keyword l = getargs(x, 1, 2, _("matching takes 1 or 2 arguments")) - revs = getset(repo, baseset(repo.changelog), l[0]) + revs = getset(repo, fullreposet(repo), l[0]) fieldlist = ['metadata'] if len(l) > 1: fieldlist = getstring(l[1], # i18n: "matching" is a keyword