From 76db43f2eb7f64409725af0f3c9e24be76dc57dc Mon Sep 17 00:00:00 2001 From: sperber Date: Tue, 19 Aug 2003 07:52:22 +0000 Subject: [PATCH] Get the names of MAKE-STRING-PORT-FILTER and MAKE-CHAR-PORT-FILTER right in the documentation. --- RELEASE | 2 +- doc/scsh-manual/procnotation.tex | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/RELEASE b/RELEASE index 8921322..4f25795 100644 --- a/RELEASE +++ b/RELEASE @@ -184,7 +184,7 @@ We manage the project using SourceForge: - Fix some problems with WAIT-FOR-CHANNELS - Fixes in the time zone code - Fix a bug in SEND-MESSAGE: There is such a thing as an empty datagram - - Renamed string-filter to make-string-filter and char-filter to + - Renamed string-filter to make-string-port-filter and char-filter to make-char-port-filter ** API changes diff --git a/doc/scsh-manual/procnotation.tex b/doc/scsh-manual/procnotation.tex index c1b2a66..8761c29 100644 --- a/doc/scsh-manual/procnotation.tex +++ b/doc/scsh-manual/procnotation.tex @@ -510,7 +510,7 @@ These forms allow conditional execution of a sequence of processes. These procedures are useful for forking off processes to filter text streams. -\begin{defundesc}{char-filter}{filter}{\proc} +\begin{defundesc}{make-char-port-filter}{filter}{\proc} The \var{filter} argument is a character$\rightarrow$character procedure. Returns a procedure that when called, repeatedly reads a character from the current input port, applies \var{filter} to the character, @@ -529,7 +529,7 @@ text streams. (> spell-errors.txt))\end{code} \end{defundesc} -\begin{defundesc}{string-filter}{filter [buflen]}{\proc} +\begin{defundesc}{make-string-port-filter}{filter [buflen]}{\proc} The \var{filter} argument is a string$\rightarrow$string procedure. Returns a procedure that when called, repeatedly reads a string from the current input port, applies \var{filter} to the string,