Didier Verna <verna(a)inf.enst.fr> writes:
would then look for lisp code under the packages/lisp directory. So
if I
remove all my packages and use the SUMO tarball, I was wondering why it would
eventually browse all those nyanyanya-packages directories.
Because of this
(defvar package-locations
(list
(list (paths-construct-path '("~" ".xemacs"))
'early #'(lambda () t))
(list "site-packages" 'late #'(lambda () t))
(list "infodock-packages" 'late #'(lambda () (featurep
'infodock)))
(list "mule-packages" 'late #'(lambda () (featurep 'mule)))
(list "xemacs-packages" 'late #'(lambda () t))
(list "packages" 'late #'(lambda () t)))
Now I guess that that what xemacs does is look recursively through
all
directories under packages/ that may contain a lisp/ dir ?
... it explictly looks for them in lib/xemacs
Jan