sequencer: move "else" keyword onto the same line as preceding brace
commita70d8f8067640070d89d0764d0dee491f8e0bd13
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Mon, 2 Jan 2017 15:26:14 +0000 (2 16:26 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 9 Jan 2017 22:57:29 +0000 (9 14:57 -0800)
tree60ed319a26d29a5ecc658b3e76dab7f0d4924758
parent637666c82258a2a11424791ad83b3a43cae101a4
sequencer: move "else" keyword onto the same line as preceding brace

It is the current coding style of the Git project to write

if (...) {
...
} else {
...
}

instead of putting the closing brace and the "else" keyword on separate
lines.

Pointed out by Junio Hamano.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sequencer.c