[slime-cvs] CVS slime

CVS User sboukarev sboukarev at common-lisp.net
Thu Sep 1 06:29:30 UTC 2011


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

Modified Files:
	ChangeLog swank-sbcl.lisp 
Log Message:
* swank-sbcl.lisp (preferred-communication-style): check for
 :sb-thread before :win32, so :spawn is preferred for threaded
 Windows builds.


--- /project/slime/cvsroot/slime/ChangeLog	2011/08/31 13:18:11	1.2213
+++ /project/slime/cvsroot/slime/ChangeLog	2011/09/01 06:29:30	1.2214
@@ -1,3 +1,9 @@
+2011-08-31  Anton Kovalenko  <anton at sw4me.com>
+
+	* swank-sbcl.lisp (preferred-communication-style): check for
+	:sb-thread before :win32, so :spawn is preferred for threaded
+	Windows builds.
+
 2011-08-31  Nikodemus Siivola  <nikodemus at random-state.net>
 
 	* swank-sbcl.lisp (make-socket-io-stream): Backwards compatibility with
--- /project/slime/cvsroot/slime/swank-sbcl.lisp	2011/08/31 13:18:11	1.288
+++ /project/slime/cvsroot/slime/swank-sbcl.lisp	2011/09/01 06:29:30	1.289
@@ -67,8 +67,8 @@
   (cond
     ;; fixme: when SBCL/win32 gains better select() support, remove
     ;; this.
-    ((member :win32 *features*) nil)
     ((member :sb-thread *features*) :spawn)
+    ((member :win32 *features*) nil)
     (t :fd-handler)))
 
 (defun resolve-hostname (name)





More information about the slime-cvs mailing list