There is a new CLICK.INI parameter named:

POSTPROCESS_WITH_THE_ALIGNER=YES

Which, when set to YES, will align @ SAY GET's (valids, etc.)

---

This compiles correctly in Clipper, even though it's nasty form to use a
key word as a variable.

Click! accepts this and does not count a key word which has been used as
a variable as a part of the structural code in a program.

( Even against my better judgement )

if x

end := 9

endif

---

for i=1 to 2
nMezo:=if(nHonap=0,;
if(i=1,_FFNYTART,_FFNYKOV),; // Nyito adatok
if(i=1,nHonap*2+_FF1T-2,nHonap*2+_FF1K-2)) // Havi adatok
next

There are some tab characters after the ; and before the // which were
messing up the end of the line continue flag detection.

Tabs are now converted to spaces everywhere except inside strings.

---

Function Main()

? if( seconds() < 5000, Wibble(), Wobble() )
? iif( seconds() < 5000, Wibble(), Wobble() )

Return( NIL )

Is fixed.

Any IF that does not start the line is a function, and the space after
the IF is removed.