[slime-cvs] CVS slime

CVS User heller heller at common-lisp.net
Sun Nov 6 17:03:59 UTC 2011


Update of /project/slime/cvsroot/slime
In directory tiger.common-lisp.net:/tmp/cvs-serv10785

Modified Files:
	ChangeLog swank-backend.lisp 
Log Message:
* swank-backend.lisp (utf8-to-string, string-to-utf8): New.

--- /project/slime/cvsroot/slime/ChangeLog	2011/11/03 18:31:31	1.2222
+++ /project/slime/cvsroot/slime/ChangeLog	2011/11/06 17:03:59	1.2223
@@ -1,3 +1,7 @@
+2011-11-06  Helmut Eller  <heller at common-lisp.net>
+
+	* swank-backend.lisp (utf8-to-string, string-to-utf8): New.
+
 2011-11-03  Helmut Eller  <heller at common-lisp.net>
 
 	* swank.lisp (close-connection): Be more careful with non-ascii.
--- /project/slime/cvsroot/slime/swank-backend.lisp	2011/06/14 15:34:18	1.206
+++ /project/slime/cvsroot/slime/swank-backend.lisp	2011/11/06 17:03:59	1.207
@@ -266,6 +266,15 @@
       '(:or)))
 
 
+;;;; UFT8
+
+(definterface string-to-utf8 (string)
+  "Convert the string STRING to a (simple-array (unsigned-byte 8))")
+
+(definterface utf8-to-string (octets)
+  "Convert the (simple-array (unsigned-byte 8)) OCTETS to a string.")
+
+
 ;;;; TCP server
 
 (definterface create-socket (host port)





More information about the slime-cvs mailing list