From 849d1ef89bd76c90c3fb0ccc1d49afca52eed522 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 10 Aug 2015 13:08:51 -0700 Subject: [PATCH] Disable debug-on-error --- dotfiles/emacs.d/init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 1699604f..b0231689 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -445,7 +445,8 @@ The current directory is assumed to be the project's root otherwise." (setq-default cursor-type 'box) (setq-default cursor-in-non-selected-windows 'bar) -(add-hook 'after-init-hook '(lambda () (setq debug-on-error t))) +(if nil ;; Causing too many annoying issues + (add-hook 'after-init-hook '(lambda () (setq debug-on-error t)))) ;; Make mouse scrolling less jumpy. (setq mouse-wheel-scroll-amount '(1 ((shift) . 1)))