[slime-cvs] CVS slime

heller heller at common-lisp.net
Sat Feb 23 10:28:01 UTC 2008


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

Modified Files:
	ChangeLog swank.lisp 
Log Message:
In the inspector, show one-element lists as list not as pair.

* swank.lisp (emacs-inspect cons)



--- /project/slime/cvsroot/slime/ChangeLog	2008/02/23 10:26:48	1.1301
+++ /project/slime/cvsroot/slime/ChangeLog	2008/02/23 10:28:01	1.1302
@@ -1,3 +1,9 @@
+2008-02-23  Helmut Eller  <heller at common-lisp.net>
+
+	In the inspector, show one-element lists as list not as pair.
+
+	* swank.lisp (emacs-inspect cons)
+
 2008-02-23  Zach Beane  <xach at xach.com>
 
 	Add customization variable for the `slime-connect' port.
--- /project/slime/cvsroot/slime/swank.lisp	2008/02/20 22:12:37	1.534
+++ /project/slime/cvsroot/slime/swank.lisp	2008/02/23 10:28:01	1.535
@@ -2752,7 +2752,7 @@
 ;;;;; Lists
 
 (defmethod emacs-inspect ((o cons))
-  (if (consp (cdr o))
+  (if (listp (cdr o))
       (inspect-list o)
       (inspect-cons o)))
 




More information about the slime-cvs mailing list