From: Chris Hanson Date: Fri, 16 Jan 2004 20:47:22 +0000 (+0000) Subject: Eliminate obsolete references to INPUT-PORT/OPERATION and X-Git-Tag: 20090517-FFI~1713 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=eb8c89ca806fef196ad2b42d8c357d1915b5fb59;p=mit-scheme.git Eliminate obsolete references to INPUT-PORT/OPERATION and OUTPUT-PORT/OPERATION. --- diff --git a/v7/doc/ref-manual/io.texi b/v7/doc/ref-manual/io.texi index 0a089c345..b18eef937 100644 --- a/v7/doc/ref-manual/io.texi +++ b/v7/doc/ref-manual/io.texi @@ -1,9 +1,9 @@ @c This file is part of the MIT/GNU Scheme Reference Manual. -@c $Id: io.texi,v 1.3 2003/09/25 16:51:56 cph Exp $ +@c $Id: io.texi,v 1.4 2004/01/16 20:47:22 cph Exp $ @c Copyright 1991,1992,1993,1994,1995 Massachusetts Institute of Technology @c Copyright 1996,1997,1999,2000,2001 Massachusetts Institute of Technology -@c Copyright 2002,2003 Massachusetts Institute of Technology +@c Copyright 2002,2003,2004 Massachusetts Institute of Technology @c See file scheme.texinfo for copying conditions. @node Input/Output, Operating-System Interface, Environments, Top @@ -1592,7 +1592,7 @@ Each of these procedures invokes the respective operation on @example @group (input-port/read-char @var{input-port}) -((input-port/operation @var{input-port} 'read-char) @var{input-port}) +((port/operation @var{input-port} 'read-char) @var{input-port}) @end group @end example @end deffn @@ -1678,7 +1678,7 @@ Each of these procedures invokes the respective operation on @example @group (output-port/write-char @var{output-port} @var{char}) -((output-port/operation @var{output-port} 'write-char) +((port/operation @var{output-port} 'write-char) @var{output-port} @var{char}) @end group @end example