* Remove forgotten wrong increments

git-svn-id: trunk@19019 -
This commit is contained in:
pierre 2011-09-07 19:43:50 +00:00
parent b270a1922b
commit 01526fa582

View File

@ -1263,6 +1263,8 @@ begin
end; end;
_GENERICSPECIALTOKEN: _GENERICSPECIALTOKEN:
begin begin
{ Short version of column change,
byte or $80 used }
if (tokenbuf[i] and $80)<>0 then if (tokenbuf[i] and $80)<>0 then
begin begin
write('Col: ',tokenbuf[i] and $7f); write('Col: ',tokenbuf[i] and $7f);
@ -1304,19 +1306,16 @@ begin
begin begin
inc(i); inc(i);
write('Line: ',gettokenbufdword); write('Line: ',gettokenbufdword);
inc(i,4);
end; end;
ST_COLUMN: ST_COLUMN:
begin begin
inc(i); inc(i);
write('Col: ',gettokenbufword); write('Col: ',gettokenbufword);
inc(i,2);
end; end;
ST_FILEINDEX: ST_FILEINDEX:
begin begin
inc(i); inc(i);
write('File: ',gettokenbufword); write('File: ',gettokenbufword);
inc(i,2);
end; end;
end; end;
end; end;