unpack-trees: use 'cuddled' style for if-else cascade
commit6c1db1b38886f70165cb9f5822b1a2e99a2c331b
authorJonathan Nieder <jrnieder@gmail.com>
Wed, 13 Aug 2014 00:00:45 +0000 (12 17:00 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 13 Aug 2014 17:32:12 +0000 (13 10:32 -0700)
treee2ffd81a55b070149d91bcc11ef5ae220c67a25c
parent0ecd180a27eab7c576feddc6f2be0626a1e0630b
unpack-trees: use 'cuddled' style for if-else cascade

Match the predominant style in git by following K&R style for if/else
cascades.  Documentation/CodingStyle from linux.git explains:

  Note that the closing brace is empty on a line of its own, _except_ in
  the cases where it is followed by a continuation of the same statement,
  ie a "while" in a do-statement or an "else" in an if-statement, like
  this:

if (x == y) {
..
} else if (x > y) {
...
} else {
....
}

  Rationale: K&R.

  Also, note that this brace-placement also minimizes the number of empty
  (or almost empty) lines, without any loss of readability.

Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
unpack-trees.c