##// END OF EJS Templates
basectx: preserve loading the cached manifest in _prestatus...
Sean Farley -
r21589:2945fdc3 default
parent child Browse files
Show More
@@ -93,6 +93,9 b' class basectx(object):'
93 For example, this allows other contexts, such as workingctx, to query
93 For example, this allows other contexts, such as workingctx, to query
94 the dirstate before comparing the manifests.
94 the dirstate before comparing the manifests.
95 """
95 """
96 # load earliest manifest first for caching reasons
97 if self.rev() < other.rev():
98 self.manifest()
96 return s
99 return s
97
100
98 def _poststatus(self, other, s, match, listignored, listclean, listunknown):
101 def _poststatus(self, other, s, match, listignored, listclean, listunknown):
General Comments 0
You need to be logged in to leave comments. Login now