##// END OF EJS Templates
filemerge: restore default prompt for binary/symlink lost in 83925d3a4559...
Matt Mackall -
r16254:c7eef052 stable
parent child Browse files
Show More
@@ -97,8 +97,11 b' def _picktool(repo, ui, path, binary, sy'
97 if check(t, None, symlink, binary):
97 if check(t, None, symlink, binary):
98 toolpath = _findtool(ui, t)
98 toolpath = _findtool(ui, t)
99 return (t, '"' + toolpath + '"')
99 return (t, '"' + toolpath + '"')
100 # internal merge as last resort
100
101 return (not (symlink or binary) and "internal:merge" or None, None)
101 # internal merge or prompt as last resort
102 if symlink or binary:
103 return "internal:prompt", None
104 return "internal:merge", None
102
105
103 def _eoltype(data):
106 def _eoltype(data):
104 "Guess the EOL type of a file"
107 "Guess the EOL type of a file"
General Comments 0
You need to be logged in to leave comments. Login now