# HG changeset patch # User Martin von Zweigbergk # Date 2022-02-15 05:52:18 # Node ID 9d0d0a388c397c14849cfc6c0a99e40c39e3d9a3 # Parent 2181548675756686a5b84e80e498061d02672d95 filemerge: remove `uselocalpath` argument from `_maketempfiles()` The `localpath` argument is unused if `uselocalpath` is false, so we can use `None` as a sentinel value for the variable instead and remove extra `uselocalpath` argument. That's not much of a win, but it's a small step towards further improvements. Differential Revision: https://phab.mercurial-scm.org/D12189 diff --git a/mercurial/filemerge.py b/mercurial/filemerge.py --- a/mercurial/filemerge.py +++ b/mercurial/filemerge.py @@ -743,9 +743,14 @@ def _xmerge(repo, mynode, local, other, return False, 1, None localpath = _workingpath(repo, fcd) args = _toolstr(repo.ui, tool, b"args") + localoutputpath = None + if b"$output" in args: + localoutputpath = backup.path() with _maketempfiles( - fco, fca, backup.path(), b"$output" in args + fco, + fca, + localoutputpath, ) as temppaths: basepath, otherpath, localoutputpath = temppaths outpath = b"" @@ -908,10 +913,10 @@ def _makebackup(repo, ui, fcd): @contextlib.contextmanager -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. +def _maketempfiles(fco, fca, localpath): + """Writes out `fco` and `fca` as temporary files, and (if localpath is not + None) copies `localpath` to another temporary file, so an external merge + tool may use them. """ tmproot = pycompat.mkdtemp(prefix=b'hgmerge-') @@ -934,7 +939,7 @@ def _maketempfiles(fco, fca, localpath, b = tempfromcontext(b"base", fca) c = tempfromcontext(b"other", fco) d = localpath - if uselocalpath: + if localpath is not None: # We start off with this being the backup filename, so remove the .orig # to make syntax-highlighting more likely. if d.endswith(b'.orig'):