Vin Shelton wrote:
mkdir -p lisp/foo bar/lisp
cat >lisp/foo/foo1.el << EOF
; (message "foo1")
; (sit-for 5)
; EOF
cat >bar/lisp/foo2.el << EOF
(message "foo2")
(sit-for 5)
EOF
xemacs-21.4 -vanilla
(load-library "foo1")
(load-library "foo2")
Can you please give me a simple recipe to reproduce the error you're seeing?
Hi Vin:
Following your script until the last load-library, from which I get the
error
Cannot open load file: foo2
That's because it is not in the load-path which is the site-package bug
that I'm
talking about.
Thanks,
Rodney