The setting "Never indent var declaration" affects the indentation of the "and" line in hte following code (from PreviewIndent).
When turned on:
if (FValue > 100)
and (FValue < 200) then
I := 1;
When turned off:
if (FValue > 100)
and (FValue < 200) then
I := 1;
This should not be the case.
fixed in revision #5086