[slime-cvs] CVS slime
CVS User sboukarev
sboukarev at common-lisp.net
Tue Aug 4 23:54:56 UTC 2009
Update of /project/slime/cvsroot/slime
In directory cl-net:/tmp/cvs-serv2735
Modified Files:
ChangeLog swank-sbcl.lisp
Log Message:
* swank-sbcl.lisp (signal-compiler-condition): read
sb-kernel:redefinition-warning only if it exists.
Some older SBCLs don't have it (particularly included in the
stable Debian).
--- /project/slime/cvsroot/slime/ChangeLog 2009/08/02 12:57:23 1.1822
+++ /project/slime/cvsroot/slime/ChangeLog 2009/08/04 23:54:55 1.1823
@@ -1,3 +1,10 @@
+2009-08-04 Stas Boukarev <stassats at gmail.com>
+
+ * swank-sbcl.lisp (signal-compiler-condition): read
+ sb-kernel:redefinition-warning only if it exists.
+ Some older SBCLs don't have it (particularly included in the
+ stable Debian).
+
2009-08-02 Tobias C. Rittweiler <tcr at freebits.de>
* swank-backend.lisp (severity [type]): Allow :redefinition.
--- /project/slime/cvsroot/slime/swank-sbcl.lisp 2009/08/02 12:57:23 1.246
+++ /project/slime/cvsroot/slime/swank-sbcl.lisp 2009/08/04 23:54:55 1.247
@@ -436,6 +436,7 @@
:severity (etypecase condition
(sb-c:compiler-error :error)
(sb-ext:compiler-note :note)
+ #+#.(swank-backend::with-symbol redefinition-warning sb-kernel)
(sb-kernel:redefinition-warning
:redefinition)
(style-warning :style-warning)
More information about the slime-cvs
mailing list