From: Perl 5 Porters Date: Fri, 16 Aug 1996 00:27:34 +0000 (+0000) Subject: perl 5.003_03: x2p/str.c X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8971618ed9d829d1bde5e12f0500700acb21ec7d;p=p5sagit%2Fp5-mst-13.2.git perl 5.003_03: x2p/str.c Use Configure's FILE_filbuf macro instead of a raw _filbuf. ---------------- Version 5.003_02 --- diff --git a/x2p/str.c b/x2p/str.c index e9dd344..953a811 100644 --- a/x2p/str.c +++ b/x2p/str.c @@ -317,7 +317,7 @@ register FILE *fp; FILE_cnt(fp) = cnt; /* deregisterize cnt and ptr */ FILE_ptr(fp) = ptr; - i = _filbuf(fp); /* get more characters */ + i = FILE_filbuf(fp); /* get more characters */ cnt = FILE_cnt(fp); ptr = FILE_ptr(fp); /* reregisterize cnt and ptr */