Csound Csound-dev Csound-tekno Search About

Re: Trailing New Line in UDO

Date2015-12-14 15:30
Fromjpff
SubjectRe: Trailing New Line in UDO
>>>>> "Oeyvind" == Oeyvind Brandtsegg  writes:

 Oeyvind> Would it be possible to add a newline after an include statement
 Oeyvind> automatically when parsing?

A macro or include may be part of a line and that was deliberate

 Oeyvind> Come to think of it, the user has already typed in the newline (as the
 Oeyvind> last item on the line with the include statement).

That newline is part of the #include syntax

==John ffitch

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Date2015-12-15 01:01
FromOeyvind Brandtsegg
SubjectRe: Trailing New Line in UDO
Hi,
Sorry to be a nuisance, but could you give an example where an include
or macro needs to be part of a line?
I'm sure there is a good reason, I would just like to understand what it is.
best
Oeyvind

2015-12-14 16:30 GMT+01:00 jpff :
>>>>>> "Oeyvind" == Oeyvind Brandtsegg  writes:
>
>  Oeyvind> Would it be possible to add a newline after an include statement
>  Oeyvind> automatically when parsing?
>
> A macro or include may be part of a line and that was deliberate
>
>  Oeyvind> Come to think of it, the user has already typed in the newline (as the
>  Oeyvind> last item on the line with the include statement).
>
> That newline is part of the #include syntax
>
> ==John ffitch
>
> Csound mailing list
> Csound@listserv.heanet.ie
> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
> Send bugs reports to
>         https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here


Date2015-12-15 01:31
FromSteven Yi
SubjectRe: Trailing New Line in UDO
Just to add a note, I did a quick search to see what the rules are in
C and found [1]. It made me think, maybe what we should do is add a
warning if an included file does not have a newline to report that,
same as when programming in C.  On the other hand, in that same
article, it looks like a different approach is taken for C++ and
newlines are automatically inserted and no error is reported.

The one case I could imagine for not automatically appending newlines
is if the file that was included wasn't code but rather data.  I think
I could see both sides to adding a newline or not, but would probably
tend assume a newline isn't added just from C programming experience.


[1] - http://stackoverflow.com/questions/72271/no-newline-at-end-of-file-compiler-warning

On Mon, Dec 14, 2015 at 8:01 PM, Oeyvind Brandtsegg
 wrote:
> Hi,
> Sorry to be a nuisance, but could you give an example where an include
> or macro needs to be part of a line?
> I'm sure there is a good reason, I would just like to understand what it is.
> best
> Oeyvind
>
> 2015-12-14 16:30 GMT+01:00 jpff :
>>>>>>> "Oeyvind" == Oeyvind Brandtsegg  writes:
>>
>>  Oeyvind> Would it be possible to add a newline after an include statement
>>  Oeyvind> automatically when parsing?
>>
>> A macro or include may be part of a line and that was deliberate
>>
>>  Oeyvind> Come to think of it, the user has already typed in the newline (as the
>>  Oeyvind> last item on the line with the include statement).
>>
>> That newline is part of the #include syntax
>>
>> ==John ffitch
>>
>> Csound mailing list
>> Csound@listserv.heanet.ie
>> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
>> Send bugs reports to
>>         https://github.com/csound/csound/issues
>> Discussions of bugs and features can be posted here
>
>
>
> --
>
> Oeyvind Brandtsegg
> Professor of Music Technology
> NTNU
> 7491 Trondheim
> Norway
> Cell: +47 92 203 205
>
> http://flyndresang.no/
> http://www.partikkelaudio.com/
> http://soundcloud.com/brandtsegg
> http://soundcloud.com/t-emp
>
> Csound mailing list
> Csound@listserv.heanet.ie
> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
> Send bugs reports to
>         https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Date2015-12-15 03:17
FromBeinan Li
SubjectRe: Trailing New Line in UDO
Thank you for the link and also for mentioning the case of including data, Steven.
This dilemma is probably a reason why many text editors have that 
famous checkbox "automatically add an EOL to the end of the file if it doesn't exist".

IMHO, giving a warning is better than automatically adding CR and/or LF data.


Thanks,
Beinan


On Mon, Dec 14, 2015 at 8:31 PM, Steven Yi <stevenyi@gmail.com> wrote:
Just to add a note, I did a quick search to see what the rules are in
C and found [1]. It made me think, maybe what we should do is add a
warning if an included file does not have a newline to report that,
same as when programming in C.  On the other hand, in that same
article, it looks like a different approach is taken for C++ and
newlines are automatically inserted and no error is reported.

The one case I could imagine for not automatically appending newlines
is if the file that was included wasn't code but rather data.  I think
I could see both sides to adding a newline or not, but would probably
tend assume a newline isn't added just from C programming experience.


[1] - http://stackoverflow.com/questions/72271/no-newline-at-end-of-file-compiler-warning

On Mon, Dec 14, 2015 at 8:01 PM, Oeyvind Brandtsegg
<oyvind.brandtsegg@ntnu.no> wrote:
> Hi,
> Sorry to be a nuisance, but could you give an example where an include
> or macro needs to be part of a line?
> I'm sure there is a good reason, I would just like to understand what it is.
> best
> Oeyvind
>
> 2015-12-14 16:30 GMT+01:00 jpff <jpff@codemist.co.uk>:
>>>>>>> "Oeyvind" == Oeyvind Brandtsegg <oyvind.brandtsegg@NTNU.NO> writes:
>>
>>  Oeyvind> Would it be possible to add a newline after an include statement
>>  Oeyvind> automatically when parsing?
>>
>> A macro or include may be part of a line and that was deliberate
>>
>>  Oeyvind> Come to think of it, the user has already typed in the newline (as the
>>  Oeyvind> last item on the line with the include statement).
>>
>> That newline is part of the #include syntax
>>
>> ==John ffitch
>>
>> Csound mailing list
>> Csound@listserv.heanet.ie
>> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
>> Send bugs reports to
>>         https://github.com/csound/csound/issues
>> Discussions of bugs and features can be posted here
>
>
>
> --
>
> Oeyvind Brandtsegg
> Professor of Music Technology
> NTNU
> 7491 Trondheim
> Norway
> Cell: +47 92 203 205
>
> http://flyndresang.no/
> http://www.partikkelaudio.com/
> http://soundcloud.com/brandtsegg
> http://soundcloud.com/t-emp
>
> Csound mailing list
> Csound@listserv.heanet.ie
> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
> Send bugs reports to
>         https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here

Date2015-12-15 08:09
FromOeyvind Brandtsegg
SubjectRe: Trailing New Line in UDO
Ok. Thanks for the background on the issue.

2015-12-15 2:31 GMT+01:00 Steven Yi :
> Just to add a note, I did a quick search to see what the rules are in
> C and found [1]. It made me think, maybe what we should do is add a
> warning if an included file does not have a newline to report that,
> same as when programming in C.  On the other hand, in that same
> article, it looks like a different approach is taken for C++ and
> newlines are automatically inserted and no error is reported.
>
> The one case I could imagine for not automatically appending newlines
> is if the file that was included wasn't code but rather data.  I think
> I could see both sides to adding a newline or not, but would probably
> tend assume a newline isn't added just from C programming experience.
>
>
> [1] - http://stackoverflow.com/questions/72271/no-newline-at-end-of-file-compiler-warning
>
> On Mon, Dec 14, 2015 at 8:01 PM, Oeyvind Brandtsegg
>  wrote:
>> Hi,
>> Sorry to be a nuisance, but could you give an example where an include
>> or macro needs to be part of a line?
>> I'm sure there is a good reason, I would just like to understand what it is.
>> best
>> Oeyvind
>>
>> 2015-12-14 16:30 GMT+01:00 jpff :
>>>>>>>> "Oeyvind" == Oeyvind Brandtsegg  writes:
>>>
>>>  Oeyvind> Would it be possible to add a newline after an include statement
>>>  Oeyvind> automatically when parsing?
>>>
>>> A macro or include may be part of a line and that was deliberate
>>>
>>>  Oeyvind> Come to think of it, the user has already typed in the newline (as the
>>>  Oeyvind> last item on the line with the include statement).
>>>
>>> That newline is part of the #include syntax
>>>
>>> ==John ffitch
>>>
>>> Csound mailing list
>>> Csound@listserv.heanet.ie
>>> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
>>> Send bugs reports to
>>>         https://github.com/csound/csound/issues
>>> Discussions of bugs and features can be posted here
>>
>>
>>
>> --
>>
>> Oeyvind Brandtsegg
>> Professor of Music Technology
>> NTNU
>> 7491 Trondheim
>> Norway
>> Cell: +47 92 203 205
>>
>> http://flyndresang.no/
>> http://www.partikkelaudio.com/
>> http://soundcloud.com/brandtsegg
>> http://soundcloud.com/t-emp
>>
>> Csound mailing list
>> Csound@listserv.heanet.ie
>> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
>> Send bugs reports to
>>         https://github.com/csound/csound/issues
>> Discussions of bugs and features can be posted here
>
> Csound mailing list
> Csound@listserv.heanet.ie
> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
> Send bugs reports to
>         https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here