summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Browning <rlb@defaultvalue.org>2003-03-27 19:54:31 +0000
committerRob Browning <rlb@defaultvalue.org>2003-03-27 19:54:31 +0000
commitfef68e7f5dd4fdecb97d5fb8941798d797554078 (patch)
tree0e8e9df8e38a0b9c39b43574282c6cc540598466
parentbc94d326a71634059bc9ec1d69e954c2662a7b56 (diff)
downloadguile-fef68e7f5dd4fdecb97d5fb8941798d797554078.tar.gz
* scheme-io.texi (Reading): clarify character ordering in port for
unread-string.
-rw-r--r--doc/ref/scheme-io.texi5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/ref/scheme-io.texi b/doc/ref/scheme-io.texi
index b4a288fbc..7c6a2054a 100644
--- a/doc/ref/scheme-io.texi
+++ b/doc/ref/scheme-io.texi
@@ -122,8 +122,9 @@ not supplied, the current input port is used.
@deffn {Scheme Procedure} unread-string str port
@deffnx {C Function} scm_unread_string (str, port)
-Place the string @var{str} in @var{port} so that its characters will be
-read in subsequent read operations. If called multiple times, the
+Place the string @var{str} in @var{port} so that its characters will
+be read from left-to-right as the next characters from @var{port}
+during subsequent read operations. If called multiple times, the
unread characters will be read again in last-in first-out order. If
@var{port} is not supplied, the current-input-port is used.
@end deffn