summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/package.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2018-03-22 21:40:24 -0700
committerGlenn Morris <rgm@gnu.org>2018-03-22 21:40:24 -0700
commitdfea6d5a4aac5fd1679a917c5e84ce17a6c6a3d8 (patch)
treea45928650165acb6e449df72755875da993a7492 /lisp/emacs-lisp/package.el
parent97b7e58c4d34722e8b0eb73b3ed315fdc9671264 (diff)
downloademacs-dfea6d5a4aac5fd1679a917c5e84ce17a6c6a3d8.tar.gz
emacs-dfea6d5a4aac5fd1679a917c5e84ce17a6c6a3d8.tar.bz2
emacs-dfea6d5a4aac5fd1679a917c5e84ce17a6c6a3d8.zip
Quieten cl-lib related compiler warnings
* lisp/completion.el (cl-set-difference): * lisp/files.el (map-merge-with, map-merge): * lisp/emacs-lisp/radix-tree.el (map-apply): Declare. * lisp/emacs-lisp/thunk.el: Load cl-lib at run-time, not cl-macs at compile. * lisp/gnus/gnus-group.el: Load cl-lib at run-time, not cl at compile. * lisp/emacs-lisp/checkdoc.el, lisp/emacs-lisp/package.el * lisp/gnus/gnus-sum.el, lisp/gnus/message.el, lisp/net/shr.el: Load cl-lib at run-time. * lisp/gnus/mml-sec.el (mml-signencrypt-style) (mml-secure-cust-record-keys): Replace cl with cl-lib, and load it at run-time. * lisp/cedet/ede/linux.el, lisp/vc/vc-hg.el: Reorder requires.
Diffstat (limited to 'lisp/emacs-lisp/package.el')
-rw-r--r--lisp/emacs-lisp/package.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index 1edc06d024d..67533679b99 100644
--- a/lisp/emacs-lisp/package.el
+++ b/lisp/emacs-lisp/package.el
@@ -143,8 +143,8 @@
;;; Code:
+(require 'cl-lib)
(eval-when-compile (require 'subr-x))
-(eval-when-compile (require 'cl-lib))
(eval-when-compile (require 'epg)) ;For setf accessors.
(require 'seq)