Get the names of MAKE-STRING-PORT-FILTER and MAKE-CHAR-PORT-FILTER

right in the documentation.
This commit is contained in:
sperber 2003-08-19 07:52:22 +00:00
parent e589da1991
commit 76db43f2eb
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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,