1
0
mirror of https://github.com/moparisthebest/Simba synced 2025-02-07 02:30:19 -05:00

Small fix.

This commit is contained in:
Niels 2010-04-07 17:07:01 +02:00
parent af9a1d0c31
commit f08e191344

View File

@ -1076,8 +1076,9 @@ begin
end;
end;}
while Lexer.IsJunk do
begin
//while Lexer.IsJunk do
//begin
repeat
if (Lexer.TokenID in [tokAnsiComment, tokBorComment, tokSlashesComment]) then
begin
if (not InDeclaration(TciJunk)) then
@ -1086,7 +1087,10 @@ begin
else if InDeclaration(TciJunk) then
PopStack;
Lexer.Next;
end;
until (not Lexer.IsJunk);
//end;
if InDeclaration(TciJunk) then
PopStack;
end;
end;