jcf: fix compilation of BuildTokenList on linux

git-svn-id: trunk@17821 -
This commit is contained in:
paul 2008-12-13 01:54:10 +00:00
parent af104c35a9
commit 2827eec53f

View File

@ -35,8 +35,6 @@ unit BuildTokenList;
interface
uses
{ delphi }
Windows,
{ local }
Tokens, SourceToken, SourceTokenList;
@ -114,9 +112,7 @@ begin
Result := False;
if GetRegSettings.CheckMultiByteChars then
begin
Result := IsDBCSLeadByte(Byte(pcChar));
end;
Result := IsMultiByte(pcChar);
end;
{ TBuildTokenList }