X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcode%2Fhost-c-call.lisp;h=d688879ee1222ae00eabd7d8079935efb9c7734b;hb=65b5ab7e713d04e0d76bc0ee196374f6e57b922f;hp=7d4c9d7eac5923ef438ac4eb7acc7193915a9942;hpb=8cad02355db787b9f077b77f508329550ccd0db6;p=sbcl.git diff --git a/src/code/host-c-call.lisp b/src/code/host-c-call.lisp index 7d4c9d7..d688879 100644 --- a/src/code/host-c-call.lisp +++ b/src/code/host-c-call.lisp @@ -44,6 +44,8 @@ (defun c-string-needs-conversion-p (type) #+sb-xc-host + (declare (ignore type)) + #+sb-xc-host t #-sb-xc-host (let ((external-format (sb!impl::get-external-format @@ -53,11 +55,11 @@ ;; changes. (alien-c-string-type-external-format type)))) (not (and external-format - (or (eq (caar external-format) :ascii) + (or (eq (first (sb!impl::ef-names external-format)) :ascii) ;; On non-SB-UNICODE all latin-1 codepoints will fit ;; into a base-char, on SB-UNICODE they won't. #!-sb-unicode - (eq (caar external-format) :latin-1)))))) + (eq (first (sb!impl::ef-names external-format)) :latin-1)))))) (define-alien-type-method (c-string :naturalize-gen) (type alien) `(if (zerop (sap-int ,alien))