Re: Better c-ts-mode indentation when there are macros in the way

Stefan Monnier via "Emacs development discussions." <[email protected]> Tue, 28 Jul 2026 12:04:39 -0400
Newsgroups gmane.emacs.devel
Message-ID <[email protected]>
> walk up the tree. For example, in
>
>    return c1 || c2 ||
> 	c3 || c4 || c5;
>
> I want c3 to "dangle" because it continues the return statement. But in
>
>    return (c1 || c2 ||
> 	    c3 || c4 || c5);
>
> I want c3 to line up because the opening paranthesis isn't

Weird.  I want `c3` to be aligned with `c1` in both cases (and indeed
that's what `sm-c-mode` does 🙂).


=== Stefan