[slime-cvs] CVS update: slime/swank-backend.lisp

Luke Gorrie lgorrie at common-lisp.net
Tue Jun 8 23:57:19 UTC 2004


Update of /project/slime/cvsroot/slime
In directory common-lisp.net:/tmp/cvs-serv31268

Modified Files:
	swank-backend.lisp 
Log Message:
(format-sldb-condition): New backend function to format conditions for
SLDB.

(condition-references): New function to return a list of documentation
references associated with a condition.

Date: Tue Jun  8 16:57:19 2004
Author: lgorrie

Index: slime/swank-backend.lisp
diff -u slime/swank-backend.lisp:1.48 slime/swank-backend.lisp:1.49
--- slime/swank-backend.lisp:1.48	Mon Jun  7 11:27:30 2004
+++ slime/swank-backend.lisp	Tue Jun  8 16:57:19 2004
@@ -366,6 +366,19 @@
   "Restart execution of the frame FRAME-NUMBER with the same arguments
 as it was called originally.")
 
+(definterface format-sldb-condition (condition)
+  "Format a condition for display in SLDB."
+  (princ-to-string condition))
+
+(definterface condition-references (condition)
+  "Return a list of documentation references for a condition.
+Each reference is one of:
+  (:ANSI-CL
+   {:FUNCTION | :SPECIAL-OPERATOR | :MACRO | :SECTION | :GLOSSARY }
+   symbol-or-name)
+  (:SBCL :NODE node-name)"
+  '())
+
 
 ;;;; Definition finding
 





More information about the slime-cvs mailing list