# HG changeset patch # User Oleksandr Gavenko # Date 1268594644 -7200 # Node ID fb177bcb3d6ffc355fbab0e854df92210c583c37 # Parent f833d68fa5ae21c56893f69345df38a629e224ff Load 'custom-file' before "~/.emacs-my" as some settings can effect on require in .emacs-my. diff -r f833d68fa5ae -r fb177bcb3d6f .emacs --- a/.emacs Sun Mar 14 21:16:54 2010 +0200 +++ b/.emacs Sun Mar 14 21:24:04 2010 +0200 @@ -31,13 +31,13 @@ (if (file-exists-p my-autoload) (load my-autoload)) +(setq custom-file "~/.emacs-custom.el") +(if (file-exists-p custom-file) + (load custom-file)) + ;; load main customization (load "~/.emacs-my") ;; post-load custom settings (if (file-exists-p dot-emacs-post) (load dot-emacs-post)) - -(setq custom-file "~/.emacs-custom.el") -(if (file-exists-p custom-file) - (load custom-file))