* some minor formatting fixes

git-svn-id: trunk@26616 -
This commit is contained in:
Jonas Maebe 2014-01-29 19:26:17 +00:00
parent a6d28b5630
commit b611882337

View File

@ -1983,7 +1983,7 @@ type
begin
hs1:=result;
preproc_consume(op);
if (op=_OP_OR)and hs1.isBoolean and hs1.asBool then
if (op=_OP_OR) and hs1.isBoolean and hs1.asBool then
begin
{ stop evaluation the rest of expression }
result:=texprvalue.create_bool(true);
@ -1992,7 +1992,7 @@ type
else
hs2:=preproc_sub_expr(succ(pred_level),false);
end
else if (op=_OP_AND)and hs1.isBoolean and not hs1.asBool then
else if (op=_OP_AND) and hs1.isBoolean and not hs1.asBool then
begin
{ stop evaluation the rest of expression }
result:=texprvalue.create_bool(false);