mercurial/context.py
branchstable
changeset 22180 17011b36aac7
parent 21990 48e32c2c499b
child 22207 8dda6f6ff564
--- a/mercurial/context.py	Fri Aug 15 02:39:01 2014 +0200
+++ b/mercurial/context.py	Fri Aug 15 02:46:44 2014 +0200
@@ -553,6 +553,8 @@
             anc = cahs[0]
         else:
             for r in self._repo.ui.configlist('merge', 'preferancestor'):
+                if r == '*':
+                    continue
                 ctx = changectx(self._repo, r)
                 anc = ctx.node()
                 if anc in cahs: