unix - Emacs cannot save customizations- init file not fully loaded -
when try check "do not show screen again" box , save @ emacs default start buffer, error: custom-save-all: cannot save customizations, init file not loaded
my full output looks like:
loading 00debian-vars... no /etc/mailname. reverting 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 information gnu emacs , gnu system, type c-h c-a. (new file) custom-save-all: cannot save customizations; init file not loaded
i have been tinkering .emacs
file no avail. looks (i trying install.el
work properly):
(load "~/elisp/autoloads" 'install) (add-to-list 'load-path "~/elisp") (require 'install.el)
if try c - x - c - e
code, errors in buffer:
debugger entered--lisp error: (error "required feature `install.el' 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
directory present, , that's *.el
files located. i'm kind of confused what's going wrong, seems have proper path names , syntax.
any amazing. thank you, fellow emacs hackers!
you need use:
(require 'install)
without .el
Comments
Post a Comment