diff -r 23727465ff72 -r 4ea521b3c554 mercurial/manifest.py --- a/mercurial/manifest.py Thu Apr 16 14:26:50 2015 -0700 +++ b/mercurial/manifest.py Sun Apr 12 14:37:55 2015 -0700 @@ -836,6 +836,7 @@ arraytext, deltatext = m.fastdelta(self._mancache[p1][1], work) cachedelta = self.rev(p1), deltatext text = util.buffer(arraytext) + n = self.addrevision(text, transaction, link, p1, p2, cachedelta) else: # The first parent manifest isn't already loaded, so we'll # just encode a fulltext of the manifest and pass that @@ -843,9 +844,8 @@ # process. text = m.text(self._usemanifestv2) arraytext = array.array('c', text) - cachedelta = None + n = self.addrevision(text, transaction, link, p1, p2) - n = self.addrevision(text, transaction, link, p1, p2, cachedelta) self._mancache[n] = (m, arraytext) return n