Mercurial > hg
changeset 32561:52cdbdd208d8
copies: rename ctx to srcctx
In the next diff we'll pass new dstctx parameter. Let's rename ctx to srcctx in
this patch.
author | Stanislau Hlebik <stash@fb.com> |
---|---|
date | Mon, 29 May 2017 05:56:17 -0700 |
parents | 931b7707179f |
children | e4d1bc14e39a |
files | mercurial/copies.py |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/copies.py Mon May 29 05:52:15 2017 -0700 +++ b/mercurial/copies.py Mon May 29 05:56:17 2017 -0700 @@ -598,17 +598,17 @@ except StopIteration: return False -def _checkcopies(ctx, f, msrc, mdst, base, tca, remotebase, limit, data): +def _checkcopies(srcctx, f, msrc, mdst, base, tca, remotebase, limit, data): """ check possible copies of f from msrc to mdst - ctx = starting context for f in msrc + srcctx = starting context for f in msrc f = the filename to check (as in msrc) msrc = the source manifest mdst = the destination manifest base = the changectx used as a merge base tca = topological common ancestor for graft-like scenarios - remotebase = True if base is outside tca::ctx, False otherwise + remotebase = True if base is outside tca::srcctx, False otherwise limit = the rev number to not search beyond data = dictionary of dictionary to store copy data. (see mergecopies) @@ -630,7 +630,7 @@ # the base) this is more complicated as we must detect a divergence. # We use 'backwards = False' in that case. backwards = not remotebase and base != tca and f in mb - getfctx = _makegetfctx(ctx) + getfctx = _makegetfctx(srcctx) if msrc[f] == mb.get(f) and not remotebase: # Nothing to merge