1diff_cmd () {
2"$merge_tool_path" -f emerge-files-command "$LOCAL" "$REMOTE"
3}
45
merge_cmd () {
6if $base_present
7then
8"$merge_tool_path" \
9-f emerge-files-with-ancestor-command \
10"$LOCAL" "$REMOTE" "$BASE" \
11"$(basename "$MERGED")"
12else
13"$merge_tool_path" \
14-f emerge-files-command \
15"$LOCAL" "$REMOTE" \
16"$(basename "$MERGED")"
17fi
18}
1920
translate_merge_tool_path() {
21echo emacs
22}
2324
exit_code_trustable () {
25true
26}