From 85ce7168490a0d7b8bb9c575b9c3382d445eae22 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 28 Nov 2018 19:45:36 -0800 Subject: [PATCH] * lisp/emacs-lisp/bytecomp.el: Don't load compile at runtime. It isn't needed and slows down compiling other files. --- lisp/emacs-lisp/bytecomp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index f60ccdae288..d6986cb7868 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -124,7 +124,7 @@ (require 'backquote) (require 'macroexp) (require 'cconv) -(require 'compile) +(eval-when-compile (require 'compile)) ;; Refrain from using cl-lib at run-time here, since it otherwise prevents ;; us from emitting warnings when compiling files which use cl-lib without ;; requiring it! (bug#30635) -- 2.39.5