aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2017-04-18 20:52:22 -0400
committerGlenn Morris2017-04-18 20:52:22 -0400
commitb6a57fb80c49bcd9163966d612671a5256f3a1a8 (patch)
treead2235dc4239a223228c18898ae5d8f5e3b4731f
parent0f8343394675480f18c121520eed2203bbe1d6ec (diff)
downloademacs-b6a57fb80c49bcd9163966d612671a5256f3a1a8.tar.gz
emacs-b6a57fb80c49bcd9163966d612671a5256f3a1a8.zip
Tweak bytecomp's loading of cl-extra
* lisp/emacs-lisp/bytecomp.el: Don't force load of cl-extra in a post-bootstrap emacs where cl-loaddefs does exist.
-rw-r--r--lisp/emacs-lisp/bytecomp.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 2c2996ebab4..f0f938da43f 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -124,11 +124,13 @@
124(require 'backquote) 124(require 'backquote)
125(require 'macroexp) 125(require 'macroexp)
126(require 'cconv) 126(require 'cconv)
127(require 'cl-lib)
127 128
128;; During bootstrap, cl-loaddefs.el is not created yet, so loading cl-lib 129;; During bootstrap, cl-loaddefs.el is not created yet, so loading cl-lib
129;; doesn't setup autoloads for things like cl-every, which is why we have to 130;; doesn't setup autoloads for things like cl-every, which is why we have to
130;; require cl-extra instead (bug#18804). 131;; require cl-extra as well (bug#18804).
131(require 'cl-extra) 132(or (fboundp 'cl-every)
133 (require 'cl-extra))
132 134
133(or (fboundp 'defsubst) 135(or (fboundp 'defsubst)
134 ;; This really ought to be loaded already! 136 ;; This really ought to be loaded already!