[slime-cvs] CVS slime
CVS User heller
heller at common-lisp.net
Sun Nov 6 18:34:51 UTC 2011
Update of /project/slime/cvsroot/slime
In directory tiger.common-lisp.net:/tmp/cvs-serv25548
Modified Files:
ChangeLog swank-ecl.lisp
Log Message:
* swank-ecl.lisp (accept-connection): Fix buffering arg.
* swank-cmucl.lisp (accept-connection): Fix buffering arg.
--- /project/slime/cvsroot/slime/ChangeLog 2011/11/06 17:39:29 1.2238
+++ /project/slime/cvsroot/slime/ChangeLog 2011/11/06 18:34:51 1.2239
@@ -1,5 +1,6 @@
2011-11-06 Helmut Eller <heller at common-lisp.net>
+ * swank-ecl.lisp (accept-connection): Fix buffering arg.
* swank-cmucl.lisp (accept-connection): Fix buffering arg.
2011-11-06 Helmut Eller <heller at common-lisp.net>
--- /project/slime/cvsroot/slime/swank-ecl.lisp 2011/06/05 13:29:19 1.69
+++ /project/slime/cvsroot/slime/swank-ecl.lisp 2011/11/06 18:34:51 1.70
@@ -84,7 +84,10 @@
(sb-bsd-sockets:socket-make-stream (accept socket)
:output t
:input t
- :buffering buffering
+ :buffering (ecase buffering
+ ((t) :full)
+ ((nil) :none)
+ (:line line))
:external-format external-format))
(defun accept (socket)
"Like socket-accept, but retry on EAGAIN."
More information about the slime-cvs
mailing list