[slime-cvs] CVS update: slime/swank-openmcl.lisp
Helmut Eller
heller at common-lisp.net
Fri Dec 12 12:38:23 UTC 2003
Update of /project/slime/cvsroot/slime
In directory common-lisp.net:/tmp/cvs-serv14684
Modified Files:
swank-openmcl.lisp
Log Message:
(list-callers): method-name is not exported in 0.14. Fix by Marco Baringer.
Date: Fri Dec 12 07:38:23 2003
Author: heller
Index: slime/swank-openmcl.lisp
diff -u slime/swank-openmcl.lisp:1.30 slime/swank-openmcl.lisp:1.31
--- slime/swank-openmcl.lisp:1.30 Fri Dec 12 06:18:21 2003
+++ slime/swank-openmcl.lisp Fri Dec 12 07:38:23 2003
@@ -13,7 +13,7 @@
;;; The LLGPL is also available online at
;;; http://opensource.franz.com/preamble.html
;;;
-;;; $Id: swank-openmcl.lisp,v 1.30 2003/12/12 11:18:21 heller Exp $
+;;; $Id: swank-openmcl.lisp,v 1.31 2003/12/12 12:38:23 heller Exp $
;;;
;;;
@@ -429,7 +429,7 @@
(symbol
(find-source-locations caller (symbol-name caller)))
(method
- (let ((n (ccl:method-name caller)))
+ (let ((n (ccl::method-name caller)))
(find-source-locations n (symbol-name n))))
(t
(find-source-locations caller (to-string caller))))))
More information about the slime-cvs
mailing list