pp_formline: restruture FF_LINEGLOB
authorDavid Mitchell <davem@iabyn.com>
Sat, 28 May 2011 13:52:41 +0000 (14:52 +0100)
committerDavid Mitchell <davem@iabyn.com>
Sun, 29 May 2011 19:21:52 +0000 (20:21 +0100)
commit7440a75bbd4cf3efd00aefb9b54f45aadf25dbf4
tree1e2d047295fd149fc56b09d499ad8f1382d31733
parent11f9eeafe5cba9d9e0c7aa0e94a6605fdc34b971
pp_formline: restruture FF_LINEGLOB

change

    if (linebreak) {
        decl;
        ....
    }

to
    decl;
    if (!linebreak)
        break;

    {
        ....
    }

shouldn't change the meaning of the code but will allow us to remove one
level of indentation and begin to reuse that block of code
pp_ctl.c