Skip to content

Commit

Permalink
mergetools/kdiff3: do not use --auto when diffing
Browse files Browse the repository at this point in the history
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 <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
David Aguilar authored and Junio C Hamano committed May 9, 2013
1 parent b120ef3 commit e2161bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mergetools/kdiff3
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit e2161bc

Please sign in to comment.