##// END OF EJS Templates
filemerge: don't try using external tools on change/delete conflicts...
Siddharth Agarwal -
r27042:30b919bc default
parent child Browse files
Show More
@@ -447,6 +447,10 b' def _idump(repo, mynode, orig, fcd, fco,'
447 447
448 448 def _xmerge(repo, mynode, orig, fcd, fco, fca, toolconf, files, labels=None):
449 449 tool, toolpath, binary, symlink = toolconf
450 if fcd.isabsent() or fco.isabsent():
451 repo.ui.warn(_('warning: %s cannot merge change/delete conflict '
452 'for %s\n') % (tool, fcd.path()))
453 return False, 1, None
450 454 a, b, c, back = files
451 455 out = ""
452 456 env = {'HG_FILE': fcd.path(),
General Comments 0
You need to be logged in to leave comments. Login now