[slime-cvs] CVS slime

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


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

Modified Files:
	ChangeLog swank-backend.lisp 
Log Message:
* swank-backend.lisp (accept-connection): Improve docstring.  In
particular say that we want a binary stream if the EXTERNAL-FORMAT
argument is nil.

--- /project/slime/cvsroot/slime/ChangeLog	2011/11/06 17:05:16	1.2230
+++ /project/slime/cvsroot/slime/ChangeLog	2011/11/06 17:05:27	1.2231
@@ -1,5 +1,11 @@
 2011-11-06  Helmut Eller  <heller at common-lisp.net>
 
+	* swank-backend.lisp (accept-connection): Improve docstring.  In
+	particular say that we want a binary stream if the EXTERNAL-FORMAT
+	argument is nil.
+
+2011-11-06  Helmut Eller  <heller at common-lisp.net>
+
 	* swank-sbcl.lisp (string-to-utf8, string-to-utf8): Implemented.
 
 2011-11-06  Helmut Eller  <heller at common-lisp.net>
--- /project/slime/cvsroot/slime/swank-backend.lisp	2011/11/06 17:03:59	1.207
+++ /project/slime/cvsroot/slime/swank-backend.lisp	2011/11/06 17:05:27	1.208
@@ -289,7 +289,13 @@
 (definterface accept-connection (socket &key external-format
                                         buffering timeout)
    "Accept a client connection on the listening socket SOCKET.  
-Return a stream for the new connection.")
+Return a stream for the new connection.
+If EXTERNAL-FORMAT is nil return a binary stream
+otherwise create a character stream.
+BUFFERING can be one of: 
+  nil or :none ... no buffering
+  t   or :full ... enable buffering
+         :line ... some buffering with autmatic flushing on eol.")
 
 (definterface add-sigio-handler (socket fn)
   "Call FN whenever SOCKET is readable.")





More information about the slime-cvs mailing list