From c1061c356fe3469b1efe801e5db21ae6f627ab4a Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Thu, 22 Dec 2022 03:29:49 -0500 Subject: [PATCH] Fix mixed whitespace --- init.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.el b/init.el index a28ea6e..22cd277 100644 --- a/init.el +++ b/init.el @@ -170,9 +170,9 @@ ;; After initialization, build quickstart file containing package autoload defs ;; and compile it alongside any other uncompiled Elisp files in installed packages (add-hook 'emacs-startup-hook (lambda () - (let ((byte-compile-warnings nil)) - (byte-recompile-directory package-user-dir 0) - (package-quickstart-refresh))))) + (let ((byte-compile-warnings nil)) + (byte-recompile-directory package-user-dir 0) + (package-quickstart-refresh))))) ;; Load "package-quickstart.el" file containing package autoload defs with a ;; call to `package-activate-all'. This is must be done to load any installed @@ -353,7 +353,7 @@ DOCSTRING is an optional form that is discarded upon expansion." ;; Elisp compilation warnings (native-comp-async-report-warnings-errors nil "Don't report errors from async native compilation") (byte-compile-warnings '(not lexical - free-vars + free-vars noruntime unresolved docstrings))