From 2238773206fe9d32e854c3e0d0ff2388d5c39dc4 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Tue, 16 Dec 2025 09:41:05 -0600 Subject: [PATCH] growl --- README.org | 2 +- init.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index c5eeb311..741a9786 100644 --- a/README.org +++ b/README.org @@ -6001,7 +6001,7 @@ Let's also use an automatic garbage collector while idle to make better input. ** Logging Using Emacs 28 there are a lot of comp warnings so I am suppressing those for a quieter compilation. #+begin_src emacs-lisp -(setq warning-suppress-types '((comp))) +(add-to-list 'warning-suppress-types '(comp)) #+end_src diff --git a/init.el b/init.el index 40177114..04ae8023 100644 --- a/init.el +++ b/init.el @@ -4424,4 +4424,4 @@ interfere with the default `bongo-playlist-buffer'." gcmh-high-cons-threshold (* 128 1024 1024) ; 128mb gcmh-verbose nil)) -(setq warning-suppress-types '((comp))) +(add-to-list 'warning-suppress-types '(comp))