From 4a9b8f0f2fefb514530176de0c81b911f0e108c2 Mon Sep 17 00:00:00 2001 From: SAITOU Keita Date: Mon, 8 Apr 2019 23:35:35 +0900 Subject: [PATCH] =?UTF-8?q?Update:=20use-package=E3=81=8Cbyte=20compile?= =?UTF-8?q?=E3=81=A8=E7=9B=B8=E6=80=A7=E3=81=8C=E6=82=AA=E3=81=84=E3=81=AE?= =?UTF-8?q?=E3=81=A7=E5=AF=BE=E8=B1=A1=E5=A4=96=E3=81=AB=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit use-packageをbyte-compileするとエラー・警告が複数出る。 ファイル分割の影響と、use-packageのバグと、複数理由がありそう。 今後、init-loaderを導入して解決をはかる、かもしれない。 とりあえず、byte-compileの例外とする。 参考: ttps://github.com/jwiegley/use-package/issues/636 --- .emacs.d/lisp/init_package.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.emacs.d/lisp/init_package.el b/.emacs.d/lisp/init_package.el index 1255127..1d78c13 100644 --- a/.emacs.d/lisp/init_package.el +++ b/.emacs.d/lisp/init_package.el @@ -464,8 +464,9 @@ (use-package auto-async-byte-compile :ensure t - ;; :custom - ;; (auto-async-byte-compile-exclude-files-regexp "init*") + :custom + ;; (auto-async-byte-compile-init-file "~/.emacs.d/init.el") + (auto-async-byte-compile-exclude-files-regexp "init_package.el") :hook (emacs-lisp-mode . enable-auto-async-byte-compile-mode)) (use-package ivy-rich