mercurial/filemerge.py
changeset 30460 ce3a133f71b3
parent 30388 8819b63732b9
child 30538 c2154979409d
equal deleted inserted replaced
30459:bccd89b46cbf 30460:ce3a133f71b3
   516 
   516 
   517     # 8 for the prefix of conflict marker lines (e.g. '<<<<<<< ')
   517     # 8 for the prefix of conflict marker lines (e.g. '<<<<<<< ')
   518     return util.ellipsis(mark, 80 - 8)
   518     return util.ellipsis(mark, 80 - 8)
   519 
   519 
   520 _defaultconflictmarker = ('{node|short} '
   520 _defaultconflictmarker = ('{node|short} '
   521                           '{ifeq(tags, "tip", "", "{tags} ")}'
   521                           '{ifeq(tags, "tip", "", '
       
   522                            'ifeq(tags, "", "", "{tags} "))}'
   522                           '{if(bookmarks, "{bookmarks} ")}'
   523                           '{if(bookmarks, "{bookmarks} ")}'
   523                           '{ifeq(branch, "default", "", "{branch} ")}'
   524                           '{ifeq(branch, "default", "", "{branch} ")}'
   524                           '- {author|user}: {desc|firstline}')
   525                           '- {author|user}: {desc|firstline}')
   525 
   526 
   526 _defaultconflictlabels = ['local', 'other']
   527 _defaultconflictlabels = ['local', 'other']