mercurial/commit.py
changeset 45708 60c46cc28bf4
parent 45707 035302e6bb38
child 45715 0428978bca22
--- a/mercurial/commit.py	Sat Oct 10 13:15:20 2020 +0530
+++ b/mercurial/commit.py	Sat Oct 10 13:19:25 2020 +0530
@@ -114,14 +114,16 @@
     p1 = ctx.p1()
 
     writechangesetcopy, writefilecopymeta = _write_copy_meta(repo)
+    files = metadata.ChangingFiles()
     ms = mergestate.mergestate.read(repo)
     salvaged = _get_salvaged(repo, ms, ctx)
+    for s in salvaged:
+        files.mark_salvaged(s)
 
     if ctx.manifestnode():
         # reuse an existing manifest revision
         repo.ui.debug(b'reusing known manifest\n')
         mn = ctx.manifestnode()
-        files = metadata.ChangingFiles()
         files.update_touched(ctx.files())
         if writechangesetcopy:
             files.update_added(ctx.filesadded())
@@ -129,9 +131,8 @@
     elif not ctx.files():
         repo.ui.debug(b'reusing manifest from p1 (no file change)\n')
         mn = p1.manifestnode()
-        files = metadata.ChangingFiles()
     else:
-        mn, files = _process_files(tr, ctx, ms, error=error)
+        mn = _process_files(tr, ctx, ms, files, error=error)
 
     if origctx and origctx.manifestnode() == mn:
         origfiles = origctx.files()
@@ -142,9 +143,6 @@
         files.update_copies_from_p1(ctx.p1copies())
         files.update_copies_from_p2(ctx.p2copies())
 
-    for s in salvaged:
-        files.mark_salvaged(s)
-
     return mn, files
 
 
@@ -165,7 +163,7 @@
     return salvaged
 
 
-def _process_files(tr, ctx, ms, error=False):
+def _process_files(tr, ctx, ms, files, error=False):
     repo = ctx.repo()
     p1 = ctx.p1()
     p2 = ctx.p2()
@@ -180,8 +178,6 @@
     m1 = m1ctx.read()
     m2 = m2ctx.read()
 
-    files = metadata.ChangingFiles()
-
     # check in files
     added = []
     removed = list(ctx.removed())
@@ -231,7 +227,7 @@
 
     mn = _commit_manifest(tr, linkrev, ctx, mctx, m, files.touched, added, drop)
 
-    return mn, files
+    return mn
 
 
 def _filecommit(