I'm on emacs guru myself, but I find the following works - and am open to
suggestions if there is a better way!
In my .emacs, I have something like
(setq load-path
(nconc
'(
"~/emacs/site" ;; I created this directory structure under my home
directory
;; Add more directories here:
)
load-path))
(add-to-list 'load-path (expand-file-name
"~/emacs/site/jde-2.2.6beta3/lisp"))
(add-to-list 'load-path (expand-file-name "~/emacs/site/semantic-1.3.1"))
etc.
Then for simple .el files, I can just put them in ~/emacs/site, and have a
line like
(require 'senator)
in ny .emacs to load the package.
Hope that helps!
Mark
--
www.ski26.freeserve.co.uk