We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 23f52d5 + 21a5a00 commit f80d777Copy full SHA for f80d777
backend/backend.lisp
@@ -285,7 +285,7 @@ form suitable for testing with #+."
285
(t start)))
286
((<= code #x7ff) (utf8-encode-aux code buffer start end 2))
287
((<= #xd800 code #xdfff)
288
- (%utf8-encode (code-char #xFFFD) ;; Replacement_Character
+ (%utf8-encode #xFFFD ;; Replacement_Character
289
buffer start end))
290
((<= code #xffff) (utf8-encode-aux code buffer start end 3))
291
((<= code #x1fffff) (utf8-encode-aux code buffer start end 4))
0 commit comments