[slime-cvs] CVS slime
CVS User heller
heller at common-lisp.net
Wed Mar 3 11:56:44 UTC 2010
Update of /project/slime/cvsroot/slime
In directory cl-net:/tmp/cvs-serv8227
Modified Files:
ChangeLog swank.lisp
Log Message:
Use @ instead of # to mark object in the inspect history.
* swank.lisp (print-part-to-string): Use @.
--- /project/slime/cvsroot/slime/ChangeLog 2010/03/03 11:56:35 1.2007
+++ /project/slime/cvsroot/slime/ChangeLog 2010/03/03 11:56:44 1.2008
@@ -181,6 +181,12 @@
resulting in duplicate modeline strings.
Reported by Leo Liu.
+2010-03-03 Helmut Eller <heller at common-lisp.net>
+
+ Use @ instead of # to mark object in the inspect history.
+
+ * swank.lisp (print-part-to-string): Use @.
+
2010-02-19 Helmut Eller <heller at common-lisp.net>
Make eval-in-frame display multiple values; not only the first.
--- /project/slime/cvsroot/slime/swank.lisp 2010/03/03 11:56:35 1.692
+++ /project/slime/cvsroot/slime/swank.lisp 2010/03/03 11:56:44 1.693
@@ -3261,7 +3261,7 @@
(let* ((string (to-line value))
(pos (position value *inspector-history*)))
(if pos
- (format nil "#~D=~A" pos string)
+ (format nil "@~D=~A" pos string)
string)))
(defun content-range (list start end)
More information about the slime-cvs
mailing list