Skip to content

Commit

Permalink
* swank-cmucl.lisp (accept-connection): Fix buffering arg.
Browse files Browse the repository at this point in the history
  • Loading branch information
Helmut Eller committed Nov 6, 2011
1 parent 68782fb commit b1dac49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
2011-11-06 Helmut Eller <heller@common-lisp.net>

* swank-cmucl.lisp (accept-connection): Fix buffering arg.

2011-11-06 Helmut Eller <heller@common-lisp.net>

* slime.el (slime-run-test): Renamed from slime-run-one-test.
Expand Down
4 changes: 2 additions & 2 deletions swank-cmucl.lisp
Expand Up @@ -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
Expand Down

0 comments on commit b1dac49

Please sign in to comment.