> +1
> and for C code as well.
Please, forget I ever mentioned it. :-) Sorry to the list for the
noise.
Cheers, Ralph.
P.S. K&R got it right. RMS just likes to be contrary. ;-)
Am Donnerstag 18 April 2013, 13:56:20 schrieb Keith Marshall:
> I confess to a personal stylistic preference for
> placement of the operator at the start of a continuation line; this is
> the style I always prefer in makefiles.
+1
and for C code as well.
I look at it as this:
If this
or this
Hi Keith,
> > > > If you break a line, please start the new line with the operator:
> > > >
> > > > -test -d "$(DESTDIR)$(bindir)" \
> > > >|| $(mkinstalldirs) "$(DESTDIR)$(bindir)";
> > >
> > > (Interesting. I have binary operators at the end of the line as,
> > > like a hyphen in
On 18 April 2013 13:00, Werner LEMBERG wrote:
> >> If you break a line, please start the new line with the operator:
> >>
> >> -test -d "$(DESTDIR)$(bindir)" \
> >>|| $(mkinstalldirs) "$(DESTDIR)$(bindir)";
> >
> > (Interesting. I have binary operators at the end of the line as,
> >
>> If you break a line, please start the new line with the operator:
>>
>> -test -d "$(DESTDIR)$(bindir)" \
>>|| $(mkinstalldirs) "$(DESTDIR)$(bindir)";
>
> (Interesting. I have binary operators at the end of the line as,
> like a hyphen in text, they indicate there's more to foll
Hi,
Werner wrote:
> Thanks, this is fine now. A minor issue:
>
> + -test -d "$(DESTDIR)$(bindir)" || \
> + $(mkinstalldirs) "$(DESTDIR)$(bindir)";
>
> If you break a line, please start the new line with the operator:
>
> -test -d "$(DESTDIR)$(bindir)" \
>|| $(mkin