Suppress undo limit warnings

This commit is contained in:
Jeremy Dormitzer 2019-11-13 09:48:26 -05:00
parent cdbf0e6c2f
commit 0f2d50a1fd

View File

@ -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