diff options
author | George Kettleborough <george.kettleborough@owlstone.co.uk> | 2023-09-05 12:50:36 -0600 |
---|---|---|
committer | Ashton Wiersdorf <mail@wiersdorf.dev> | 2023-09-05 12:50:36 -0600 |
commit | c9d9ce1f208dbd5c141cf8b4a4ac929f5cf0301d (patch) | |
tree | f973ca9a573ac9a1611c4c57beff413b31ae1281 | |
parent | a1a452c4b62e8142758debc664c33bf84a98d7fb (diff) |
Suppress reporting of async compile warnings and errors
Signed-off-by: Ashton Wiersdorf <mail@wiersdorf.dev>
-rw-r--r-- | early-init.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/early-init.el b/early-init.el index 91b9fcd..f6bc9d5 100644 --- a/early-init.el +++ b/early-init.el @@ -19,6 +19,7 @@ (setq gc-cons-threshold 10000000) (setq byte-compile-warnings '(not obsolete)) (setq warning-suppress-log-types '((comp) (bytecomp))) +(setq native-comp-async-report-warnings-errors 'silent) ;; Silence stupid startup message (setq inhibit-startup-echo-area-message (user-login-name)) |