Re: line breaking and indenting
Re: line breaking and indenting
- Subject: Re: line breaking and indenting
- From: Emmanuel <email@hidden>
- Date: Sun, 28 Jan 2001 21:34:12 +0100
At 17:39 +0100 28/01/01, Gakuji Ohtori wrote:
>
Question 1:
>
>
The script
>
>
set a to ,
>
{,
>
a:1,,
>
b:2,,
>
c:3,
>
}
[snip]
>
>
after a compilation. Are there any ways to avoid this? Probably not.
>
>
Question 2:
>
>
It seems records do not allow line-breaking with the continuation
>
character between their properties. No ways to line-break between
>
properties?
You could insert the line-breaks *before* the commas:
------------
set a to {a:1 ,
, b:2 ,
, c:3 ,
} ,
------------
This does not solve the residual first item problem "{a:1".
HTH
Emmanuel