[slime-cvs] CVS slime
CVS User sboukarev
sboukarev at common-lisp.net
Mon Dec 17 11:14:48 UTC 2012
Update of /project/slime/cvsroot/slime
In directory tiger.common-lisp.net:/tmp/cvs-serv19908
Modified Files:
ChangeLog swank.lisp
Log Message:
* swank.lisp (thread-for-evaluation): Use INTEGER, not FIXNUM, as
a specializer, FIXNUM is not a standard class.
--- /project/slime/cvsroot/slime/ChangeLog 2012/12/16 13:38:21 1.2375
+++ /project/slime/cvsroot/slime/ChangeLog 2012/12/17 11:14:48 1.2376
@@ -1,3 +1,8 @@
+2012-12-17 Stas Boukarev <stassats at gmail.com>
+
+ * swank.lisp (thread-for-evaluation): Use INTEGER, not FIXNUM, as
+ a specializer, FIXNUM is not a standard class.
+
2012-12-16 Helmut Eller <heller at common-lisp.net>
* swank.lisp (thread-for-evaluation): Make generic. Remove keyword
--- /project/slime/cvsroot/slime/swank.lisp 2012/12/16 13:38:21 1.799
+++ /project/slime/cvsroot/slime/swank.lisp 2012/12/17 11:14:48 1.800
@@ -1003,7 +1003,7 @@
(spawn-worker-thread connection))
(:method ((connection multithreaded-connection) (id (eql :find-existing)))
(car (mconn.active-threads connection)))
- (:method (connection (id fixnum))
+ (:method (connection (id integer))
(find-thread id))
(:method ((connection singlethreaded-connection) id)
(current-thread)))
More information about the slime-cvs
mailing list