# HG changeset patch # User Richard Westhaver # Date 1727484140 14400 # Node ID 77cd10dfa212851253e9a7b77c7a1be7c8b7a216 # Parent 5f88b237ce299f3805592ac02b0e220d760691ed attempt to silence compile warnings at init diff -r 5f88b237ce29 -r 77cd10dfa212 emacs/init.el --- a/emacs/init.el Fri Sep 27 20:19:10 2024 -0400 +++ b/emacs/init.el Fri Sep 27 20:42:20 2024 -0400 @@ -6,7 +6,9 @@ (add-to-list 'load-path (expand-file-name "lib" user-emacs-directory)) (dolist (x '("util.el" "default.el" "keys.el")) - (let ((y (concat user-emacs-directory x))) + (let ((y (concat user-emacs-directory x)) + (byte-compile-warnings nil) + (native-comp-async-warnings-errors-kind nil)) (if (and (native-comp-available-p) (not (eq system-type 'darwin))) (native-compile y) (byte-compile-file y))