changelog shortlog graph tags branches files raw help

Mercurial > core / changeset: attempt to silence compile warnings at init

changeset 681: 77cd10dfa212
parent 680: 5f88b237ce29
child 682: 5e8b1855f866
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 27 Sep 2024 20:42:20 -0400
files: emacs/init.el
description: attempt to silence compile warnings at init
     1.1--- a/emacs/init.el	Fri Sep 27 20:19:10 2024 -0400
     1.2+++ b/emacs/init.el	Fri Sep 27 20:42:20 2024 -0400
     1.3@@ -6,7 +6,9 @@
     1.4 (add-to-list 'load-path (expand-file-name "lib" user-emacs-directory))
     1.5 
     1.6 (dolist (x '("util.el" "default.el" "keys.el"))
     1.7-  (let ((y (concat user-emacs-directory x)))
     1.8+  (let ((y (concat user-emacs-directory x))
     1.9+        (byte-compile-warnings nil)
    1.10+        (native-comp-async-warnings-errors-kind nil))
    1.11     (if (and (native-comp-available-p) (not (eq system-type 'darwin)))
    1.12          (native-compile y)
    1.13          (byte-compile-file y))