From 19c18d073c90c137eb0efb94bd35564fb7d55d1f Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 5 Jun 2016 00:12:05 -0400 Subject: [PATCH] doom-byte-compile: don't auto-compile core/core-ui.el --- core/core-defuns.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-defuns.el b/core/core-defuns.el index 9f93b8ceb..58748aef8 100644 --- a/core/core-defuns.el +++ b/core/core-defuns.el @@ -335,7 +335,7 @@ e.g. (doom-fix-unicode \"DejaVu Sans\" '(?⚠ ?★ ?λ ?➊ ?➋ ?➌ ?➍ ?➎ "Byte compile the core and library .el files in ~/.emacs.d" (interactive) (mapc (lambda (f) (byte-compile-file (concat doom-emacs-dir "/" f) t)) - '("init.el" "core/core.el" "core/core-defuns.el" "core/core-ui.el" + '("init.el" "core/core.el" "core/core-defuns.el" "core/core-os.el" "core/core-os-osx.el" "core/core-os-win32.el" "core/core-os-linux.el" "private/my-commands.el" "private/my-bindings.el"))