I just tracked down an annoying bug in Jacl... the classloader could not
found a /tcl/lang/library/init.tcl resource, so the interpreter refused
to start.

The Interp had been trying to load resources from the system
classloader, not the classloader which loaded tcl.lang.Interp:

--- Interp.java.orig    Mon May 22 16:42:51 2000
+++ Interp.java Tue May 23 18:39:13 2000
@@ -2445,7 +2445,7 @@ throws 
     InputStream stream = null;
 
     try {
-       stream = Class.class.getResourceAsStream(resName);
+       stream = getClass().getResourceAsStream(resName);
     } catch (SecurityException e2) {
        // This catch is necessary if Jacl is to work in an applet
         // at all. Note that java::new will not work from within Jacl

-- 
Jeff Sturm
[EMAIL PROTECTED]

----------------------------------------------------------------
The TclJava mailing list is sponsored by Scriptics Corporation.
To subscribe:    send mail to [EMAIL PROTECTED]  
                 with the word SUBSCRIBE as the subject.
To unsubscribe:  send mail to [EMAIL PROTECTED] 
                 with the word UNSUBSCRIBE as the subject.
To send to the list, send email to '[EMAIL PROTECTED]'. 
An archive is available at http://www.mail-archive.com/tcljava@scriptics.com

Reply via email to