When I try to check the "Do not show this screen again" checkbox and save it to the default Emacs start buffer, I get the error message: custom-save-all: Cannot save customizations, init file not fully loaded
My full output is as follows:
Loading 00debian-vars... No /etc/mailname. Reverting to default... Loading 00debian-vars...done Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)... Loading debian-ispell... Loading /var/cache/dictionaries-common/emacsen-ispell-default.el (source)...done Loading debian-ispell...done Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...done Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...done Loading /etc/emacs/site-start.d/50slime.el (source)... Loading /usr/share/emacs23/site-lisp/slime/slime-autoloads.elc...done Loading /etc/emacs/site-start.d/50slime.el (source)...done Loading /home/nathan/elisp/autoloads...done For information about GNU Emacs and the GNU system, type Ch Ca. (New file) custom-save-all: Cannot save customizations; init file was not fully loaded
I easily redid my .emacs file. It looks like this (I'm trying to get install.el to work correctly):
(load "~/elisp/autoloads" 'install) (add-to-list 'load-path "~/elisp") (require 'install.el)
If I try to execute C - X - C - E this code, I get errors in the buffer:
Debugger entered--Lisp error: (error "Required feature `install.el' was not provided") require(install\.el) eval((require (quote install\.el))) eval-last-sexp-1(nil) eval-last-sexp(nil) call-interactively(eval-last-sexp nil nil)
~/elisp present, and where my *.el files are *.el . So I'm a little confused about what is going wrong, because it seems that I have the correct names and path syntax.
Any help would be awesome. Thank you Emacs freebies!
source share