1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

Fix port-position documentation

* doc/ref/r6rs.texi (rnrs io ports): Update the translation for
  port-position.
This commit is contained in:
Andy Wingo 2019-11-25 09:47:04 +01:00
parent 2fbc38f0d0
commit 59febb4b2d

View file

@ -1734,7 +1734,7 @@ chapter.
@end deffn
@deffn {Scheme Procedure} port-position port
Equivalent to @code{(seek @var{port} SEEK_CUR 0)}. @xref{Random
Equivalent to @code{(seek @var{port} 0 SEEK_CUR)}. @xref{Random
Access}.
@end deffn
@ -1743,7 +1743,7 @@ Return @code{#t} is @var{port} supports @code{port-position}.
@end deffn
@deffn {Scheme Procedure} set-port-position! port offset
Equivalent to @code{(seek @var{port} SEEK_SET @var{offset})}.
Equivalent to @code{(seek @var{port} @var{offset} SEEK_SET)}.
@xref{Random Access}.
@end deffn