# HG changeset patch # User Martin von Zweigbergk # Date 1421451659 28800 # Node ID 2c166f6b5d109c69991b495aaffba3d48b378bfe # Parent 8a5267cd528630309ec9c8a5b22e90ffc0e9ef29 trydiff: inline indexmeta() The function is trivial and is only called in one place. diff -r 8a5267cd5286 -r 2c166f6b5d10 mercurial/patch.py --- a/mercurial/patch.py Fri Jan 23 14:09:49 2015 -0800 +++ b/mercurial/patch.py Fri Jan 16 15:40:59 2015 -0800 @@ -1739,9 +1739,6 @@ def trydiff(repo, revs, ctx1, ctx2, modified, added, removed, copy, getfilectx, opts, losedatafn, prefix): - def addindexmeta(meta, index1, index2): - meta.append('index %s..%s\n' % (index1, index2)) - def gitindex(text): if not text: text = "" @@ -1869,7 +1866,8 @@ if binarydiff and not opts.nobinary: text = mdiff.b85diff(content1, content2) if text and opts.git: - addindexmeta(header, gitindex(content1), gitindex(content2)) + header.append('index %s..%s\n' % + (gitindex(content1), gitindex(content2))) else: text = mdiff.unidiff(content1, date1, content2, date2,