diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2023-08-25 10:26:31 -0400 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2023-08-28 09:32:40 -0400 |
commit | 30c325c98192c95ea8639e9eb9ed0f1694ce0617 (patch) | |
tree | 7ad7a2664942f23cc7b7189090a40c7619ce9f57 /emacs | |
parent | 794cf516b1d0ab9f435ec456c710301ccfb45ffb (diff) |
Disable noisy compilation warnings
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.config/emacs-kj/early-init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/.config/emacs-kj/early-init.el b/emacs/.config/emacs-kj/early-init.el index fb1d581..fde5f3e 100644 --- a/emacs/.config/emacs-kj/early-init.el +++ b/emacs/.config/emacs-kj/early-init.el @@ -2,9 +2,10 @@ ;; Defer garbage collection further back in the startup process (setq gc-cons-threshold most-positive-fixnum) - (setq-default inhibit-redisplay t inhibit-message t) +;; These log messages are too annoying. +(setq native-comp-async-report-warnings-errors 'silent) (add-hook 'window-setup-hook (lambda () (setq-default inhibit-redisplay nil |