* in ISO mode, f^ is undefined after Rewrite

git-svn-id: trunk@41429 -
This commit is contained in:
florian 2019-02-24 10:32:59 +00:00
parent 38a7f7c975
commit 74275a9173

View File

@ -1858,6 +1858,8 @@ procedure fpc_Read_Text_Char_intern(var f : Text; out c: char); iocheck; [extern
function fpc_GetBuf_Text(var f : Text) : pchar; iocheck; compilerproc;
Begin
Result:=@TextRec(f).Bufptr^[TextRec(f).BufEnd];
if TextRec(f).mode=fmOutput then
exit;
If not CheckRead(f) then
exit;
If TextRec(f).BufPos>=TextRec(f).BufEnd Then