mlf176f2 pushed a commit to branch externals/ergoemacs-mode in repository elpa.
commit c93471bb27750135f6da08625015de5c3afa8a8c Author: Matthew L. Fidler <[email protected]> Date: Wed Jul 2 15:31:19 2014 -0500 Be a bit more careful when saving customizations; otherwise emacs wont exit with unsucessful init files --- ergoemacs-functions.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ergoemacs-functions.el b/ergoemacs-functions.el index 66408fd..e6d8c47 100644 --- a/ergoemacs-functions.el +++ b/ergoemacs-functions.el @@ -118,7 +118,7 @@ If an error occurs, display the error, and sit for 2 seconds before exiting" (message "Cannot save customizations; init file was not fully loaded") (sit-for 1)) (t - (customize-save-customized)))) + (ignore-errors (customize-save-customized))))) (defun ergoemacs-ctl-c (&optional arg) "Ergoemacs C-c key."
