![](https://secure.gravatar.com/avatar/752348b72a0f4331f256a1caf28eed29.jpg?s=120&d=mm&r=g)
26 Aug
2009
26 Aug
'09
1:46 p.m.
On Wed, Aug 26, 2009 at 3:25 PM, Kevin Reid<kpreid@mac.com> wrote:
On Aug 26, 2009, at 8:55, Alessio Stalla wrote:
Also, how does this patch behave with recursive loading - i.e. I load x from file.jar and x contains (load "y"), is "y" relative to x?
CL:LOAD does not rebind *default-pathname-defaults*. The proper way for a file to do this (insofar as it's appropriate to do at all) is:
(load (merge-pathnames #p"y" *load-truename*))
Right, sorry - I was thinking more of asdf, which loads everything relative to the location of the .asd file, and if that is in a jar, ...
ABCL's jar file support should be made such that this works.
Ale