Get the names of MAKE-STRING-PORT-FILTER and MAKE-CHAR-PORT-FILTER
right in the documentation.
This commit is contained in:
parent
e589da1991
commit
76db43f2eb
2
RELEASE
2
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
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue