Submitter | phabricator |
---|---|
Date | April 15, 2020, 3:18 p.m. |
Message ID | <3668b14fc8c13dfd1f3aad7292ce27d6@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/46128/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/revset.py b/mercurial/revset.py --- a/mercurial/revset.py +++ b/mercurial/revset.py @@ -281,7 +281,7 @@ return ancdepths, descdepths -def generationsrel(repo, subset, x, rel, z, order): +def generationssubrel(repo, subset, x, rel, z, order): # TODO: rewrite tests, and drop startdepth argument from ancestors() and # descendants() predicates a, b = getintrange( @@ -2650,8 +2650,8 @@ } subscriptrelations = { - b"g": generationsrel, - b"generations": generationsrel, + b"g": generationssubrel, + b"generations": generationssubrel, }