From: Nathan Bird Date: Fri, 6 Jan 2012 21:39:09 +0000 (-0500) Subject: Removing odbc::%cstring-into-vector -- unused and unreliable. X-Git-Tag: v6.1.1~16 X-Git-Url: http://git.kpe.io/?a=commitdiff_plain;h=01ea3765ca1164c3e122eec84d6cf3e25e351c57;hp=01ea3765ca1164c3e122eec84d6cf3e25e351c57;p=clsql.git Removing odbc::%cstring-into-vector -- unused and unreliable. The idea of the function was to copy out of c string memory into a lisp string a byte at a time, converting to lisp characters as we go. However: * this doesn't work with multibyte charsets * the underlying deref-array funcall would sometimes pull the entire array into lisp to then get at the single element-- for each element. * set elements in the lisp array using schar but there's no guarantee that the lisp array is a simple-string. Newer SBCL's err on this. ---