Subject: Re: (x)emacs c-mode indentation question
To: None <netbsd-help@netbsd.org>
From: Wayne Cuddy <wcuddy@crb-web.com>
List: netbsd-help
Date: 12/21/2001 15:13:11
On Fri, Dec 21, 2001 at 12:41:55PM -0500, Wayne Cuddy wrote:
> int
> myfunct(int A)
> {
> if(a != b) &&
> (c != d)
> {
> ...
> }
> return 0;
> }
>
OK, so I couldn't even type my example correctly what I meant was:
int
myfunct(int A)
{
if( (a != b) &&
(c != d))
{
...
}
return 0;
}
BTW: it was 'arglist-cont-nonempty' that I need to set to '++'