diff options
author | Kevin Ryde <user42@zip.com.au> | 2005-04-21 21:30:45 +0000 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2005-04-21 21:30:45 +0000 |
commit | 348464148f956f7aae4f4feaf00ba6270dfd9959 (patch) | |
tree | 943f2dab159cf329b06e271d1c91eb580ae7d6a1 /doc/ref/api-io.texi | |
parent | 052130df8e0eb41ffe598fbf97fcc3350daa4a1c (diff) | |
download | guile-348464148f956f7aae4f4feaf00ba6270dfd9959.tar.gz |
Index entries for standard input/output/error.
Diffstat (limited to 'doc/ref/api-io.texi')
-rw-r--r-- | doc/ref/api-io.texi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/ref/api-io.texi b/doc/ref/api-io.texi index ac9bb3e77..1c3408886 100644 --- a/doc/ref/api-io.texi +++ b/doc/ref/api-io.texi @@ -614,6 +614,7 @@ return 0 immediately if the request size is 0 bytes. @rnindex current-input-port @deffn {Scheme Procedure} current-input-port @deffnx {C Function} scm_current_input_port () +@cindex standard input Return the current input port. This is the default port used by many input procedures. Initially, @code{current-input-port} returns the @dfn{standard input} in Unix and C terminology. @@ -622,6 +623,7 @@ returns the @dfn{standard input} in Unix and C terminology. @rnindex current-output-port @deffn {Scheme Procedure} current-output-port @deffnx {C Function} scm_current_output_port () +@cindex standard output Return the current output port. This is the default port used by many output procedures. Initially, @code{current-output-port} returns the @dfn{standard output} in @@ -630,6 +632,7 @@ Unix and C terminology. @deffn {Scheme Procedure} current-error-port @deffnx {C Function} scm_current_error_port () +@cindex standard error output Return the port to which errors and warnings should be sent (the @dfn{standard error} in Unix and C terminology). @end deffn |