On Sat, 19 Oct 2024, 15:05 Oğuz, <[email protected]> wrote: > > #ifdef FOO > if (foo && zot) > #else > if (bar && zot) > #endif > { >
That's fine for the editors, but it's still a problem for "indent", as it
produces nested indentation:
#ifdef FOO
if (foo && zot)
#else
if (bar && zot)
#endif
{ …
