mergetool: style fixes
authorJunio C Hamano <junio@pobox.com>
Thu, 23 Aug 2012 05:33:15 +0000 (22:33 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 24 Aug 2012 04:30:51 +0000 (21:30 -0700)
commitf8750a0ea951a328481b67b5d0558c0402f0cdfd
treef82d3dc99197a197e550e0687d86e60304c3459c
parentcd7c0be19f49efe77a8b0690ab92d2eb1cff1778
mergetool: style fixes

This script is one of the sizeable ones that tempted people to copy
its "neibouring style" in their new code, but was littered with
styles incompatible with our style guide.

 - use one tab, not four spaces, per indent level;

 - long lines can be wrapped after '|', '&&', or '||' for
   readability.

 - structures like "if .. then .. else .. fi", "while .. do .. done"
   are split into lines in such a way that does not require
   unnecessary semicolon.

 - case, esac and case-arms align at the same column.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-mergetool.sh