Steffen Prohaska <prohaska@xxxxxx> wrote: > This commit adds a mechanism to provide absolute paths to the > external programs called by 'git mergetool'. ... ... > @@ -297,17 +297,38 @@ do > shift > done > > +valid_tool() { > + case "$1" in > + kdiff3 | tkdiff | xxdiff | meld | opendiff | emerge | vimdiff | gvimdiff) > + ;; # happy > + *) > + return 1 > + ;; > + esac > +} ... > + test -n "$merge_tool" || valid_tool "$merge_tool" || { Wouldn't an empty $merge_tool string be caught above in the valid_tool function where it falls through and returns 1? So isn't test -n here redundant? -- Shawn. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html