We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Such code-points do not represent unicode characters. This also breaks the non-ambiguity of :utf-8 encoding:
:utf-8
(babel:string-to-octets (string (code-char #xd800))) ; => #(237 160 128) (babel:octets-to-string *) ; Evaluation aborted on #<BABEL-ENCODINGS:CHARACTER-OUT-OF-RANGE {10053D9533}>.
For example sbcl throws an error in such case:
(sb-ext:string-to-octets (string (code-char #xd800))) ; Evaluation aborted on #<SB-IMPL::OCTETS-ENCODING-ERROR {10013BEA23}>.
This seems to affect some other utf/ucs encodings as well (like :utf-16be or :utf-16le).
:utf-16be
:utf-16le
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Such code-points do not represent unicode characters.
This also breaks the non-ambiguity of
:utf-8
encoding:For example sbcl throws an error in such case:
This seems to affect some other utf/ucs encodings as well (like
:utf-16be
or:utf-16le
).The text was updated successfully, but these errors were encountered: