# HG changeset patch # User Sean Farley # Date 2013-11-06 23:02:07 # Node ID 5b4f963d21ccb04ca3779adf20501031166c46aa # Parent 20ef533ffb01cf419ca2cdb7129b813468a15ac0 merge: refactor initialization of variables in update There is no code change here but this helps prepare for future commits that will fix a bare update with obsolete markers. diff --git a/mercurial/merge.py b/mercurial/merge.py --- a/mercurial/merge.py +++ b/mercurial/merge.py @@ -679,6 +679,12 @@ def update(repo, node, branchmerge, forc wlock = repo.wlock() try: wc = repo[None] + pl = wc.parents() + p1 = pl[0] + pa = None + if ancestor: + pa = repo[ancestor] + if node is None: # Here is where we should consider bookmarks, divergent bookmarks, # foreground changesets (successors), and tip of current branch; @@ -691,11 +697,9 @@ def update(repo, node, branchmerge, forc else: raise util.Abort(_("branch %s not found") % wc.branch()) overwrite = force and not branchmerge - pl = wc.parents() - p1, p2 = pl[0], repo[node] - if ancestor: - pa = repo[ancestor] - else: + + p2 = repo[node] + if pa is None: pa = p1.ancestor(p2) fp1, fp2, xp1, xp2 = p1.node(), p2.node(), str(p1), str(p2)