I recently switched to the use of emacs' package manager packages
.
Since then, some emacs path variables get set beyond what I do in my .emacs
file: Both load-path
and Info-directory-list
get perpended with stuff from the packages. But I don't understand where these customisations are done.
Let's concentrate on Info-directory-list
: In my .emacs
file I don't set it so it should be nil (so that later when info
starts up, its initialised from Info-default-directory-list
. However with my new packaging it is already intialised and some package directories are added. This messes up my dir
structure in info
. I have checked the autoload files, but they don't set Info-directory-list
in any way - and no other elisp file in the packages (pandoc-mode
in particular) do so.
Where is the Info-directory-list
variable set and how can I regain control over the order in this variable?