You can read here auto-save-list
here:
Ch i g (emacs) Recover
RET
Emacs records information about terminated sessions for later recovery in files named `.saves-PID-HOSTNAME 'in the directory` ~ / .emacs.d / auto-save-list /'. This directory is defined by the variable `auto-save-list-file-prefix '. If you set `auto-save-list-file-prefix 'to` nil', sessions will not be recorded for recovery.
You may get a little confused with site-lisp
- the only standard directory under this name is not intended to live in the user's home directory (usually it lives in /usr/local/share/emacs/site-lisp
), and the only feature is that by default Emacs will include it in the load-path
list.
The goal, as the name implies, is that libraries that should be accessible to all users on a given computer can be placed in this directory.
In contrast, the ~/elisp
that you created will not be accessible to anyone else.
More details here:
Ch i g (emacs) Init File
RET
phils source share