##// END OF EJS Templates
smartset: don't ignore hidden revs when intersecting...
Martin von Zweigbergk -
r52004:5ae05937 default
parent child Browse files
Show More
@@ -1132,7 +1132,10 b' class fullreposet(_spanset):'
1132 1132 #
1133 1133 # `other` was used with "&", let's assume this is a set like
1134 1134 # object.
1135 other = baseset(other - self._hiddenrevs)
1135 other = baseset(other)
1136
1137 if self._hiddenrevs:
1138 other = other - self._hiddenrevs
1136 1139
1137 1140 other.sort(reverse=self.isdescending())
1138 1141 return other
@@ -1014,8 +1014,6 b' The hidden commit is an orphan but doesn'
1014 1014 summary: my test internal commit
1015 1015
1016 1016 $ hg log -G -r 'unstable()'
1017 abort: filtered revision '1' (known-bad-output !)
1018 [10]
1019 1017
1020 1018
1021 1019 Test for archived phase
General Comments 0
You need to be logged in to leave comments. Login now