commit: pass mergestate into `_process_files` instead of re-reading it
Differential Revision: https://phab.mercurial-scm.org/D9193
--- a/mercurial/commit.py Sat Oct 10 13:12:11 2020 +0530
+++ b/mercurial/commit.py Sat Oct 10 13:15:20 2020 +0530
@@ -131,7 +131,7 @@
mn = p1.manifestnode()
files = metadata.ChangingFiles()
else:
- mn, files = _process_files(tr, ctx, error=error)
+ mn, files = _process_files(tr, ctx, ms, error=error)
if origctx and origctx.manifestnode() == mn:
origfiles = origctx.files()
@@ -165,7 +165,7 @@
return salvaged
-def _process_files(tr, ctx, error=False):
+def _process_files(tr, ctx, ms, error=False):
repo = ctx.repo()
p1 = ctx.p1()
p2 = ctx.p2()
@@ -179,7 +179,6 @@
m = mctx.read()
m1 = m1ctx.read()
m2 = m2ctx.read()
- ms = mergestate.mergestate.read(repo)
files = metadata.ChangingFiles()