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

Andras Simon asimon at common-lisp.net
Tue Aug 3 12:15:58 UTC 2004


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

Modified Files:
	swank-abcl.lisp 
Log Message:
Minor cleanup.
Date: Tue Aug  3 05:15:57 2004
Author: asimon

Index: slime/swank-abcl.lisp
diff -u slime/swank-abcl.lisp:1.8 slime/swank-abcl.lisp:1.9
--- slime/swank-abcl.lisp:1.8	Mon Jun 28 10:46:13 2004
+++ slime/swank-abcl.lisp	Tue Aug  3 05:15:57 2004
@@ -2,16 +2,13 @@
 ;;;
 ;;; swank-abcl.lisp --- Armedbear CL specific code for SLIME. 
 ;;;
-;;; Created 2004, Andras Simon
+;;; Adapted from swank-acl.lisp, Andras Simon, 2004
 ;;;
 ;;; This code has been placed in the Public Domain.  All warranties
-;;; are disclaimed. This code was written for "Allegro CL Trial
-;;; Edition "5.0 [Linux/X86] (8/29/98 10:57)".
+;;; are disclaimed. 
 ;;;  
 
 (in-package :swank-backend)
-(use-package :java)
-
 
 
 (eval-when (:compile-toplevel :load-toplevel :execute)
@@ -140,7 +137,7 @@
     (subseq (ext:backtrace-as-list) start end)))
 
 (defimplementation print-frame (frame stream)
-  (print frame stream))
+    (pprint frame stream))
 
 #+nil
 (defimplementation frame-locals (index)
@@ -258,7 +255,7 @@
     `(((,symbol)
        (:location 
         (:file ,(namestring (ext:source-pathname symbol)))
-        (:position ,(ext:source-file-position symbol) t)
+        (:position ,(or (ext:source-file-position symbol) 0) t)
         (:snippet nil))))))
   
 





More information about the slime-cvs mailing list