On an assignment, when the aligner was fixing the spaces before the :=,
it would not correct the following lines if the := was followed by a ;
It started like:
somevar := { 'asdfasdf', ;
'asdfasdf', ;
'asdfasdf' }
.993 version looked like:
somevar := { 'asdfasdf', ;
'asdfasdf', ;
'asdfasdf' }
.994 version looks like:
somevar := { 'asdfasdf', ;
'asdfasdf', ;
'asdfasdf' }
---
On a similar note:
On a declaration, when the aligner was fixing the spaces before the :=,
it would not correct the following lines if the := was followed by a ;
It started like:
LOCAL somevar := { 'asdfasdf', ;
'asdfasdf', ;
'asdfasdf' }
.993 version looked like:
LOCAL somevar := { 'asdfasdf', ;
'asdfasdf', ;
'asdfasdf' }
.994 version looks like:
LOCAL somevar := { 'asdfasdf', ;
'asdfasdf', ;
'asdfasdf' }
---
REPLACE ALL
is ignored when
CHANGE_REPLACE_WITH_TO_ASSIGNMENT=YES
---
replace x with y
now becomes
field->x := y
instead of
x := y
however
replace inv->x with y
becomes
inv->x := y
and not
field->inv->x := y // which works, by the way!