# HG changeset patch
# User Martin von Zweigbergk <martinvonz@google.com>
# Date 1644985137 28800
#      Tue Feb 15 20:18:57 2022 -0800
# Node ID 8dd5853eaa04c569d0672cad346992ee2cd4a480
# Parent  6e77083683a7d1e5e28afe0e6f59b14d974ebcc6
filemerge: remove unused `repo` argument from `_maketempfiles()`

I missed this in D12171.

Differential Revision: https://phab.mercurial-scm.org/D12194

diff --git a/mercurial/filemerge.py b/mercurial/filemerge.py
--- a/mercurial/filemerge.py
+++ b/mercurial/filemerge.py
@@ -745,7 +745,7 @@
     args = _toolstr(repo.ui, tool, b"args")
 
     with _maketempfiles(
-        repo, fco, fca, repo.wvfs.join(backup.path()), b"$output" in args
+        fco, fca, repo.wvfs.join(backup.path()), b"$output" in args
     ) as temppaths:
         basepath, otherpath, localoutputpath = temppaths
         outpath = b""
@@ -921,7 +921,7 @@
 
 
 @contextlib.contextmanager
-def _maketempfiles(repo, fco, fca, localpath, uselocalpath):
+def _maketempfiles(fco, fca, localpath, uselocalpath):
     """Writes out `fco` and `fca` as temporary files, and (if uselocalpath)
     copies `localpath` to another temporary file, so an external merge tool may
     use them.