Submitter | phabricator |
---|---|
Date | Dec. 19, 2017, 12:10 p.m. |
Message ID | <differential-rev-PHID-DREV-2xd55ktugpkbt73u2f7o-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/26360/ |
State | Superseded |
Headers | show |
Comments
yuja added a comment. This should come before https://phab.mercurial-scm.org/D1733? REPOSITORY rHG Mercurial REVISION DETAIL https://phab.mercurial-scm.org/D1734 To: pulkit, #hg-reviewers Cc: yuja, mercurial-devel
Patch
diff --git a/mercurial/repoview.py b/mercurial/repoview.py --- a/mercurial/repoview.py +++ b/mercurial/repoview.py @@ -143,6 +143,7 @@ # Otherwise your filter will have to recompute all its branches cache # from scratch (very slow). filtertable = {'visible': (computehidden, set()), + 'visible-hidden': (computehidden, set()), 'served': (computeunserved, set()), 'immutable': (computemutable, set()), 'base': (computeimpactable, set())} diff --git a/mercurial/branchmap.py b/mercurial/branchmap.py --- a/mercurial/branchmap.py +++ b/mercurial/branchmap.py @@ -84,6 +84,7 @@ # This create and ordering used for branchmap purpose. # the ordering may be partial subsettable = {None: 'visible', + 'visible-hidden': 'visible', 'visible': 'served', 'served': 'immutable', 'immutable': 'base'}