1999-08-12 Gary Houston <ghouston@easynet.co.uk>

* ports.c (scm_seek): one more: was scm_lseek.  Also changed the
	Scheme name from lseek to seek, but lseek was added recently so
	it shouldn't be a big problem.
	* ports.c, gdbint.c, ioext.c: changed callers.
This commit is contained in:
Gary Houston 1999-08-12 18:58:55 +00:00
commit c94577b445
5 changed files with 23 additions and 16 deletions

4
NEWS
View file

@ -1040,12 +1040,12 @@ work on any kind of port, not just ports which are open on a file.
as file ports. If the size argument is omitted, the current
file position is used.
** new procedure: lseek PORT/FDES OFFSET WHENCE
** new procedure: seek PORT/FDES OFFSET WHENCE
The arguments are the same as for the old fseek procedure, but it
works on string ports as well as random-access file ports.
** the fseek procedure now works on string ports, since it has been
redefined using lseek.
redefined using seek.
** the setvbuf procedure now uses a default size if mode is _IOFBF and
size is not supplied.