aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2018-11-28 19:45:36 -0800
committerGlenn Morris2018-11-28 19:45:36 -0800
commit85ce7168490a0d7b8bb9c575b9c3382d445eae22 (patch)
tree6af9859027540259d3dca914ce8613a06d6c37b7
parente8d7e3a59a05917b94b6803c123be97ccd693f0d (diff)
downloademacs-85ce7168490a0d7b8bb9c575b9c3382d445eae22.tar.gz
emacs-85ce7168490a0d7b8bb9c575b9c3382d445eae22.zip
* lisp/emacs-lisp/bytecomp.el: Don't load compile at runtime.
It isn't needed and slows down compiling other files.
-rw-r--r--lisp/emacs-lisp/bytecomp.el2
1 files changed, 1 insertions, 1 deletions
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 @@
124(require 'backquote) 124(require 'backquote)
125(require 'macroexp) 125(require 'macroexp)
126(require 'cconv) 126(require 'cconv)
127(require 'compile) 127(eval-when-compile (require 'compile))
128;; Refrain from using cl-lib at run-time here, since it otherwise prevents 128;; Refrain from using cl-lib at run-time here, since it otherwise prevents
129;; us from emitting warnings when compiling files which use cl-lib without 129;; us from emitting warnings when compiling files which use cl-lib without
130;; requiring it! (bug#30635) 130;; requiring it! (bug#30635)