Skip to content
Snippets Groups Projects
Commit edd28e9c authored by rtoy's avatar rtoy
Browse files

o CHAR-DOWNCASE was mistaken included with CHAR-TITLECASE.

o Fix some typos in keyword values for the :CASING argument to
  STRING-UPCASE and friends.
o Make the documentation for OCTETS-TO-STRING match the
  implementation.
parent 625ebcf5
No related branches found
No related tags found
No related merge requests found
...@@ -298,7 +298,6 @@ full Unicode codepoint.) ...@@ -298,7 +298,6 @@ full Unicode codepoint.)
\end{defun} \end{defun}
\begin{defun}{lisp:}{char-titlecase}{\args \var{character}} \begin{defun}{lisp:}{char-titlecase}{\args \var{character}}
\defunx{char-downcase}{\args \var{character}}
The Unicode titlecase letter is returned. The Unicode titlecase letter is returned.
\end{defun} \end{defun}
...@@ -337,8 +336,8 @@ this encoding and handle the surrogate pairs correctly. ...@@ -337,8 +336,8 @@ this encoding and handle the surrogate pairs correctly.
pairs are handled correctly. The conversion to the appropriate case pairs are handled correctly. The conversion to the appropriate case
is done based on the Unicode conversion. The additional argument is done based on the Unicode conversion. The additional argument
\kwd{casing} controls how case conversion is done. The default \kwd{casing} controls how case conversion is done. The default
value is \kwd{:simple}, which uses simple Unicode case conversion. value is \kwd{simple}, which uses simple Unicode case conversion.
If \kwd{casing} is \kwd{:full}, then full Unicode case conversion is If \kwd{casing} is \kwd{full}, then full Unicode case conversion is
done where the string may actually increase in length. done where the string may actually increase in length.
\end{defun} \end{defun}
...@@ -521,21 +520,31 @@ utility functions are provided to make access easier. ...@@ -521,21 +520,31 @@ utility functions are provided to make access easier.
\end{defun} \end{defun}
\begin{defun}{}{octets-to-string}{\args \var{octets} \keys{\kwd{start} \begin{defun}{}{octets-to-string}{\args \var{octets} \keys{\kwd{start}
\kwd{end} \kwd{external-format} \kwd{string}}} \kwd{end} \kwd{external-format} \kwd{string} \kwd{s-start}
\kwd{s-end} \kwd{state}}}
\code{octets-to-string} converts the sequence of octets in \code{octets-to-string} converts the sequence of octets in
\var{octets} to a string. \var{octets} must be a \var{octets} to a string. \var{octets} must be a
\code{(simple-array (unsigned-byte 8) (*))}. The octets to be \code{(simple-array (unsigned-byte 8) (*))}. The octets to be
converted are bounded by \var{start} and \var{end}, which default to converted are bounded by \var{start} and \var{end}, which default to
0 and the length of the array, respectively. The conversion is 0 and the length of the array, respectively. The conversion is
performed according to the external format specified by performed according to the external format specified by
\var{external-format}. If \var{string} is specified, the octets are \var{external-format}. If \var{string} is specified, the octets are
converted and stored in \var{string}. \var{string} must be converted and stored in \var{string}, starting at \var{s-start}
\code{simple-string}. Otherwise, a new string is (defaulting to 0) and ending just before \var{s-end} (defaulting to
created. the end of \var{string}. \var{string} must be \code{simple-string}.
If the bounded string is not large enough to hold all of the
Three values are returned: the string, the number of characters characters, then some octets will not be converted. If \var{string}
is not specified, a new string is created.
The \var{state} is used as the initial state of for the external
format. This is useful when converting buffers of octets where the
buffers are not on character boundaries, and state information is
needed between buffers.
Four values are returned: the string, the number of characters
written to the string, and the number of octets consumed to produce written to the string, and the number of octets consumed to produce
the characters. the characters, and the final state of external format after
converting the octets.
\end{defun} \end{defun}
\section{Writing External Formats} \section{Writing External Formats}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment