changeset 1495 | 1e265c2bec94 |
parent 1493 | 1a216cb4ee64 |
child 1510 | 755e7ac351ef |
--- a/mercurial/localrepo.py Wed Nov 02 20:09:19 2005 -0800 +++ b/mercurial/localrepo.py Wed Nov 02 20:22:29 2005 -0800 @@ -1504,9 +1504,6 @@ return 1 branch_merge = True - if moddirstate: - self.dirstate.setparents(p1, p2) - # get the files we don't need to change files = get.keys() files.sort() @@ -1559,6 +1556,9 @@ else: self.dirstate.forget(remove) + if moddirstate: + self.dirstate.setparents(p1, p2) + def merge3(self, fn, my, other): """perform a 3-way merge in the working directory"""