* Skip UTF-8 BOM.

git-svn-id: trunk@10732 -
This commit is contained in:
yury 2008-04-19 23:18:54 +00:00
parent 30cb2b088b
commit f9eb22394d

View File

@ -157,6 +157,8 @@ begin
while not eof(t) do
begin
readln(t,s);
if Copy(s,1,3)=#$EF#$BB#$BF then
delete(s,1,3);
if s<>'' then
begin
TrimB(s);