Hi y'all,

I'm heavily using iso646.h in my code, and I noticed that indent doesn't
play nice with it. Take this code, for example:

#include <iso646.h>
int main(void)
{
        return 5 or !8;
}

After running indent (with any of -gnu, -orig, -linux, and -kr) on the
file with it

return 5 or !8;

changes to

return 5 or ! 8;

Which is against most style guides suggesting to put prefix operators
close to the data they... prefix.

Is it possible to have iso646 support in indent?

-- 
Artyom Bologov
https://aartaka.me

Reply via email to