Mercurial > public > mercurial-scm > hg-stable
diff mercurial/revlog.py @ 12025:2315a95ee887
mdiff.patch(): add a special case for when the base text is empty
remove the special casing from revlog.addgroup()
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Mon, 23 Aug 2010 13:28:04 +0200 |
parents | 56a7721ee3ec |
children | e21fe9c5fb25 |
line wrap: on
line diff
--- a/mercurial/revlog.py Mon Aug 23 13:24:19 2010 +0200 +++ b/mercurial/revlog.py Mon Aug 23 13:28:04 2010 +0200 @@ -1353,12 +1353,7 @@ dfh.flush() ifh.flush() text = self.revision(chain) - if len(text) == 0: - # skip over trivial delta header - # text == '' in the case of nullrev or punched revision - text = buffer(delta, 12) - else: - text = mdiff.patches(text, [delta]) + text = mdiff.patch(text, delta) del delta chk = self._addrevision(node, text, transaction, link, p1, p2, None, ifh, dfh)