[slime-cvs] CVS slime

CVS User trittweiler trittweiler at common-lisp.net
Sun Jan 3 14:22:23 UTC 2010


Update of /project/slime/cvsroot/slime
In directory cl-net:/tmp/cvs-serv17487

Modified Files:
	ChangeLog slime.el 
Log Message:
	* slime.el (slime-next-read-or-lose): Call `debug' with the error
	condition, so we can see what actually caused the losage.


--- /project/slime/cvsroot/slime/ChangeLog	2010/01/03 10:05:04	1.1949
+++ /project/slime/cvsroot/slime/ChangeLog	2010/01/03 14:22:22	1.1950
@@ -1,5 +1,10 @@
 2010-01-03  Tobias C. Rittweiler <tcr at freebits.de>
 
+	* slime.el (slime-next-read-or-lose): Call `debug' with the error
+	condition, so we can see what actually caused the losage.
+
+2010-01-03  Tobias C. Rittweiler <tcr at freebits.de>
+
 	* slime.el (compile-defun [test]): Also test proper notification
 	after reader-error. Additionally: bind font-lock-verbose to nil to
 	prevent annoying font-lock messages during the test.
--- /project/slime/cvsroot/slime/slime.el	2010/01/03 10:05:04	1.1260
+++ /project/slime/cvsroot/slime/slime.el	2010/01/03 14:22:22	1.1261
@@ -1660,7 +1660,7 @@
   (condition-case error
       (slime-net-read)
     (error
-     (debug)
+     (debug 'error error)
      (slime-net-close process t)
      (error "net-read error: %S" error))))
 





More information about the slime-cvs mailing list