Line splitting question

Just starting out? Need help? Post your questions and find answers here.
tua
User
User
Posts: 68
Joined: Sun Jul 23, 2023 8:49 pm
Location: BC, Canada

Line splitting question

Post 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?
miso
Enthusiast
Enthusiast
Posts: 466
Joined: Sat Oct 21, 2023 4:06 pm
Location: Hungary

Re: Line splitting question

Post 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.
Quin
Addict
Addict
Posts: 1132
Joined: Thu Mar 31, 2022 7:03 pm
Location: Colorado, United States
Contact:

Re: Line splitting question

Post by Quin »

tua
User
User
Posts: 68
Joined: Sun Jul 23, 2023 8:49 pm
Location: BC, Canada

Re: Line splitting question

Post by tua »

Thanks - had missed that one
Post Reply