diff -r f0e9718ec640 -r 3efe37437745 .emacs --- a/.emacs Sun Apr 25 22:08:56 2010 +0300 +++ b/.emacs Sun Apr 25 23:09:13 2010 +0300 @@ -19,11 +19,18 @@ (defvar my-autoload (concat my-lisp-dir "/autoload-my.el") "Path to autoload for mode files.") +(defvar dot-emacs-autogen (expand-file-name "~/.emacs-autogen") + "Path to automatically generated config file. It content depend on + installation environment and it was overridden on install.") (defvar dot-emacs-pre (expand-file-name "~/.emacs-pre") "Path to file with pre-loaded custom settings.") (defvar dot-emacs-post (expand-file-name "~/.emacs-post") "Path to file with post-loaded custom settings.") + +(if (file-exists-p dot-emacs-autogen) + (load dot-emacs-autogen)) + ;; pre-load custom settings (if (file-exists-p dot-emacs-pre) (load dot-emacs-pre))