[slime-cvs] CVS slime

heller heller at common-lisp.net
Thu Dec 14 16:17:36 UTC 2006


Update of /project/slime/cvsroot/slime
In directory clnet:/tmp/cvs-serv17713

Modified Files:
	swank.lisp 
Log Message:
(*sldb-printer-bindings*): *PRINT-LINES* is in
effect only if *PRINT-PRETTY* is non-NIL, so it better to enable
the pretty printer.  Suggested by Madhu <enometh at meer.net>.


--- /project/slime/cvsroot/slime/swank.lisp	2006/12/13 16:57:47	1.427
+++ /project/slime/cvsroot/slime/swank.lisp	2006/12/14 16:17:36	1.428
@@ -90,7 +90,7 @@
 Redirection is done while Lisp is processing a request for Emacs.")
 
 (defvar *sldb-printer-bindings*
-  `((*print-pretty*           . nil)
+  `((*print-pretty*           . t)
     (*print-level*            . 4)
     (*print-length*           . 10)
     (*print-circle*           . t)
@@ -100,7 +100,7 @@
     (*print-base*             . 10)
     (*print-radix*            . nil)
     (*print-array*            . t)
-    (*print-lines*            . 200)
+    (*print-lines*            . 10)
     (*print-escape*           . t))
   "A set of printer variables used in the debugger.")
 




More information about the slime-cvs mailing list