From: David Aguilar Date: Thu, 9 May 2013 09:13:28 +0000 (-0700) Subject: mergetools/kdiff3: do not use --auto when diffing X-Git-Tag: v1.8.2.3~4 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/e2161bc38514722050b3a9c50a7897c40b6a93cf?hp=b120ef3eac677762427631d5ae7372402a80b837 mergetools/kdiff3: do not use --auto when diffing The `kdiff3 --auto` help message is, "No GUI if all conflicts are auto- solvable." This flag was carried over from the original mergetool commands. diff_cmd() is for two-way comparisons only so remove the superfluous flag. Signed-off-by: David Aguilar Signed-off-by: Junio C Hamano --- diff --git a/mergetools/kdiff3 b/mergetools/kdiff3 index 28fead428b..a30034f116 100644 --- a/mergetools/kdiff3 +++ b/mergetools/kdiff3 @@ -1,5 +1,5 @@ diff_cmd () { - "$merge_tool_path" --auto \ + "$merge_tool_path" \ --L1 "$MERGED (A)" --L2 "$MERGED (B)" \ "$LOCAL" "$REMOTE" >/dev/null 2>&1 }