Rebecca Ore <ore(a)op.net> writes:
Andrew Gierth also sent his solution for FSF Emacs which was geared
to
not disturbing an existing earlier setup:
;; add personal library directories to start of load-path
(setq load-path
(cons
(expand-file-name "~/.Emacs")
(cons
(expand-file-name "~/.Emacs/gnus-5.4.67/lisp")
(cons
(expand-file-name "~/.Emacs/mailcrypt-3.5b7/lisp")
load-path))))
Umph! Write it as:
(setq load-path (nconc (mapcar #'expand-file-name
'("~/.Emacs" "~/.Emacs/gnus-5.4.67/lisp"
"~/.Emacs/mailcrypt-3.5b7/lisp"))
load-path))
--
Emacs style police