[slime-cvs] CVS slime
heller
heller at common-lisp.net
Sat Aug 30 15:33:40 UTC 2008
Update of /project/slime/cvsroot/slime
In directory clnet:/tmp/cvs-serv4430
Modified Files:
ChangeLog swank.lisp
Log Message:
* swank.lisp (prepare-part): Also wrap action elements
in a list. Reported by Ariel Badichi and Madhu.
--- /project/slime/cvsroot/slime/ChangeLog 2008/08/30 15:33:34 1.1484
+++ /project/slime/cvsroot/slime/ChangeLog 2008/08/30 15:33:39 1.1485
@@ -1,5 +1,10 @@
2008-08-30 Helmut Eller <heller at common-lisp.net>
+ * swank.lisp (prepare-part): Also wrap action elements
+ in a list. Reported by Ariel Badichi and Madhu.
+
+2008-08-30 Helmut Eller <heller at common-lisp.net>
+
* slime.el (slime-pop-to-buffer): Drop the norecord argument,
since we can't support it easily in Emacs 21.
Reported by Christophe Rhodes.
--- /project/slime/cvsroot/slime/swank.lisp 2008/08/27 17:53:08 1.579
+++ /project/slime/cvsroot/slime/swank.lisp 2008/08/30 15:33:39 1.580
@@ -2902,8 +2902,8 @@
((:value obj &optional str)
(list (value-part obj str (istate.parts istate))))
((:action label lambda &key (refreshp t))
- (action-part label lambda refreshp
- (istate.actions istate)))
+ (list (action-part label lambda refreshp
+ (istate.actions istate))))
((:line label value)
(list (princ-to-string label) ": "
(value-part value nil (istate.parts istate))
More information about the slime-cvs
mailing list