Page 1 of 1

Line splitting question

Posted: Mon Jun 09, 2025 10:26 pm
by tua
6.21 now says: Unfinished splitted line

on this

Code: Select all

EnableExplicit

Define LongExpr.s = "insert into table data ....." + 
                    "insert into table more data ....." + 
                    ; the lines below refer to ...
                    "insert into table more data ....." + 
                    "insert into table more data ....."              
which I have found to be quite helpful and have been using it frequently.

Bug or intention?

Re: Line splitting question

Posted: Mon Jun 09, 2025 10:39 pm
by miso
Intension. A couple of versions prior, to comment inside a splitted line was allowed, but considered to be unsafe and the feature has been removed.

Re: Line splitting question

Posted: Mon Jun 09, 2025 10:47 pm
by Quin

Re: Line splitting question

Posted: Tue Jun 10, 2025 12:27 am
by tua
Thanks - had missed that one