From b3a74b59afe367eb2c9439f9764da36198d99cba Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Thu, 11 Apr 2024 18:06:52 -0700 Subject: [PATCH] Emacs: suppress nativecomp warnings --- thoom-emacs/init.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/thoom-emacs/init.el b/thoom-emacs/init.el index a2d8906..dd88f35 100644 --- a/thoom-emacs/init.el +++ b/thoom-emacs/init.el @@ -4,6 +4,9 @@ "This directory houses all of the built-in Prelude modules.") (add-to-list 'load-path thoom/modules-dir) +;; Suppress native compilation warnings +(setq native-comp-async-report-warnings-errors nil) + ;; Set a location for the custom file so it doesn't pollute this file. (setq custom-file (locate-user-emacs-file "custom-vars.el"))