+ Normal characters get written to the wrong buffer

git-svn-id: trunk@4747 -
This commit is contained in:
michael 2006-09-28 17:56:09 +00:00
parent 0445dc039e
commit c863a91be9

View File

@ -784,7 +784,7 @@ Begin
end;
else begin
if f.bufpos<f.bufsize-2 then begin
f.buffer[f.bufpos]:=ch;
f.bufptr^[f.bufpos]:=ch;
inc(f.bufpos);
WriteChar(ch);
end;