# HG changeset patch # User Oleksandr Gavenko # Date 1425234174 -7200 # Node ID 62509eda174b9227b8273ee9b11856ff8feb8f20 # Parent a1f5b0d02e72a9c6dc85d01cc63569357ed8bf6a File existence handled by 'load' itself. diff -r a1f5b0d02e72 -r 62509eda174b .emacs --- a/.emacs Sun Mar 01 13:42:06 2015 +0200 +++ b/.emacs Sun Mar 01 20:22:54 2015 +0200 @@ -13,7 +13,5 @@ (my-load.add-my-loadpaths) (mapc - (lambda (fname) - (if (file-exists-p fname) - (load fname))) + (lambda (fname) (load fname t)) (list custom-file my-lisp-autogen my-lisp-auth my-lisp-pre my-lisp-autoload my-lisp-dotemacs my-lisp-post))