On Fri, Jan 8, 2010 at 4:47 PM, Alessio Stalla alessiostalla@gmail.com wrote:
On Fri, Jan 8, 2010 at 4:02 PM, Alan Ruttenberg alanruttenberg@gmail.com wrote:
What do those .abcl files contain? It seems to me that loading them fails because they're always assumed to be zip files, while they can also be plain text files (that's what happens at line 231 of Load.java); however, this is (apparently) unrelated to whether they are in a subdirectory or not, so I'm not sure we're observing the same problem.
Ale
Here's the test. Both files are the same .abcl, compiled from a one line lisp program. The only difference is that one is in a subdirectory.
Ok, thank you very much. I found the problem. Load.java passes an incorrect entry name for entries in subdirectories: it keeps the full path, instead of using just the file name. As soon as I get home I will commit the fix.
Committed (rev. 12344).
A.