LCL: FileIstText now allows Form Feed #12

git-svn-id: trunk@14462 -
This commit is contained in:
mattias 2008-03-07 18:25:20 +00:00
parent 67ebf94a2e
commit dac6ab0c82

View File

@ -461,7 +461,9 @@ begin
NewLine:=false;
for i:=1 to length(Buf) do begin
case Buf[i] of
#0..#8,#11..#12,#14..#31: exit;
// #10,#13: new line
// #12: form feed
#0..#8,#11,#14..#31: exit;
#10,#13: NewLine:=true;
end;
end;