Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/encoder.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,11 @@ characters in string S to STREAM."
do (write-char #\\ stream) (write-char special stream)
else if (< #x1f code #x7f)
do (write-char ch stream)
else if (< #x10000 code #x1FFFF)
do (let ((c (- code #x10000)))
(format stream "\\u~x\\u~x"
(logior #xd800 (ash c -10))
(logior #xdc00 (logand c #x3ff))))
else
do (let ((special '#.(rassoc-if #'consp +json-lisp-escaped-chars+)))
(destructuring-bind (esc . (width . radix)) special
Expand Down