From 43d173c9af8aae7648b2d943357e75f4b6280705 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Alvari=C3=B1o?= Date: Fri, 6 May 2022 13:09:05 +0200 Subject: [PATCH] Move 'disable cl warnings' to init.el --- early-init.el | 4 ---- init.el | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/early-init.el b/early-init.el index 10d2e75..7977936 100644 --- a/early-init.el +++ b/early-init.el @@ -10,10 +10,6 @@ ;; Disable package.el in favor of straight.el (setq package-enable-at-startup nil) -;; Disable cl-functions warnings -(setq byte-compile-warnings '(cl-functions)) - - (provide 'early-init) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; early-init.el ends here diff --git a/init.el b/init.el index ad6115b..c33c9f2 100644 --- a/init.el +++ b/init.el @@ -10,6 +10,10 @@ ;; - Install the latest release of org ;; - Load the file ~/.emacs.d/myconfig.org ;; + +;; Disable cl-functions warnings +(setq byte-compile-warnings '(cl-functions)) + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; set up straight package manager (defvar bootstrap-version)