##// END OF EJS Templates
localrepo: mark nullrev has never filtered...
marmoute -
r44149:c25885cc default draft
parent child Browse files
Show More
@@ -1532,7 +1532,7 b' class localrepository(object):'
1532 1532
1533 1533 # dealing with some special values
1534 1534 if changeid == b'null' or changeid == nullrev:
1535 return context.changectx(self, nullrev, nullid)
1535 return context.changectx(self, nullrev, nullid, maybe_filtered=False)
1536 1536 if changeid == b'tip':
1537 1537 node = self.changelog.tip()
1538 1538 rev = self.changelog.rev(node)
@@ -54,6 +54,5 b' Getting the node of `null`'
54 54 Getting basic changeset inforation about `null`
55 55
56 56 $ hg log -r null -T "{node}\n{date}\n"
57 debug.filters: computing revision filter for "visible"
58 57 0000000000000000000000000000000000000000
59 58 0.00
General Comments 0
You need to be logged in to leave comments. Login now