From 0f2d50a1fd3817c67cbd77dad17fd359985e28a8 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Wed, 13 Nov 2019 09:48:26 -0500 Subject: [PATCH] Suppress undo limit warnings --- emacs/init.org | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/emacs/init.org b/emacs/init.org index a925e50..c6fd853 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -478,6 +478,11 @@ Whenever the buffer changes, look up the major-mode to see if there is any code (add-hook 'buffer-list-update-hook #'run-buffer-mode-hooks) #+END_SRC +** Miscellaneous +#+BEGIN_SRC emacs-lisp + (setq warning-suppress-types + '((undo discard-info))) +#+END_SRC * Customization File I don't want anything to write to my init.el, so save customizations in a separate file: #+BEGIN_SRC emacs-lisp