[slime-cvs] CVS slime

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


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

Modified Files:
	ChangeLog swank-cmucl.lisp 
Log Message:
* swank-cmucl.lisp (accept-connection): Fix buffering arg.

--- /project/slime/cvsroot/slime/ChangeLog	2011/11/06 17:06:49	1.2237
+++ /project/slime/cvsroot/slime/ChangeLog	2011/11/06 17:39:29	1.2238
@@ -1,5 +1,9 @@
 2011-11-06  Helmut Eller  <heller at common-lisp.net>
 
+	* swank-cmucl.lisp (accept-connection): Fix buffering arg.
+
+2011-11-06  Helmut Eller  <heller at common-lisp.net>
+
 	* slime.el (slime-run-test): Renamed from slime-run-one-test.
 	(slime-toggle-test-debug-on-error): New.
 	([test] break): Longer timeouts.
--- /project/slime/cvsroot/slime/swank-cmucl.lisp	2011/11/06 17:05:41	1.234
+++ /project/slime/cvsroot/slime/swank-cmucl.lisp	2011/11/06 17:39:29	1.235
@@ -113,9 +113,9 @@
   (declare (ignore timeout))
   (make-socket-io-stream (ext:accept-tcp-connection socket) 
                          (ecase buffering
-                           (:full :full)
+                           ((t) :full)
                            (:line :line)
-                           ((:none nil) :none))
+                           ((nil) :none))
                          external-format))
 
 ;;;;; Sockets





More information about the slime-cvs mailing list