This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
fix some more bizarre indention in dump.c
authorDavid Mitchell <davem@iabyn.com>
Mon, 23 Jan 2017 14:58:29 +0000 (14:58 +0000)
committerDavid Mitchell <davem@iabyn.com>
Mon, 23 Jan 2017 14:58:29 +0000 (14:58 +0000)
commit6f3289f02701c220917a04baadb76473ebe3c89a
tree9504c9e25ad25e19392008c4dcc2f50805de5b5e
parentf4c617746504f38fcb281a2b1c1da9426d8eab01
fix some more bizarre indention in dump.c

(whitespace-only change)

Not mentioning any names to protect the guilty, but about 3 years ago some
code was committed to dump.c that had just bizarre indentation; for
example, this

    if (foo)
        bar

being more like

        if (foo)
     bar

(and this is nothing to do with tab expansion).

This commit fixes up the most glaring issues.
dump.c