Wolfgang Bumiller ad8a98f7e4 parse_arguments: work with utf8 bytes and reduce indentation
We are only caring about '=' and '-' which are single-byte
codepoints, so there's no reason not to work on a byte
slice.

Also, some indentation reduction:

Transform
    if (a) {
        ...
        return A;
    }
    return B;
into
    if (!a)
        return B;
    return A;

and
    if (a)
        if (b)
            foo()
into
    if (a && b)
        return;

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2018-12-28 13:47:29 +01:00
..
2018-12-06 10:41:57 +01:00
2018-12-27 13:15:47 +01:00
2018-12-16 13:57:59 +01:00
2018-12-16 13:57:59 +01:00
2018-12-05 18:22:56 +01:00
2018-12-21 13:38:41 +01:00
2018-12-27 13:15:47 +01:00
2018-12-28 08:04:46 +01:00