mercurial/merge.py
changeset 5390 36c46e20976a
parent 5371 17ed9b9a0d03
child 5429 77cafe8f89e0
--- a/mercurial/merge.py	Fri Oct 05 23:01:38 2007 +0200
+++ b/mercurial/merge.py	Wed Oct 03 23:09:36 2007 +0200
@@ -53,7 +53,10 @@
     r = util.system('%s "%s" "%s" "%s"' % (cmd, a, b, c), cwd=repo.root,
                     environ={'HG_FILE': fd,
                              'HG_MY_NODE': str(wctx.parents()[0]),
-                             'HG_OTHER_NODE': str(mctx)})
+                             'HG_OTHER_NODE': str(mctx),
+                             'HG_MY_ISLINK': fcm.islink(),
+                             'HG_OTHER_ISLINK': fco.islink(),
+                             'HG_BASE_ISLINK': fca.islink(),})
     if r:
         repo.ui.warn(_("merging %s failed!\n") % fd)