From dfea6d5a4aac5fd1679a917c5e84ce17a6c6a3d8 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Thu, 22 Mar 2018 21:40:24 -0700 Subject: 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. --- lisp/completion.el | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lisp/completion.el') diff --git a/lisp/completion.el b/lisp/completion.el index 9666ca60b04..ff942940861 100644 --- a/lisp/completion.el +++ b/lisp/completion.el @@ -2225,6 +2225,8 @@ TYPE is the type of the wrapper to be added. Can be :before or :under." (modify-syntax-entry char "_" table)) table)) +(declare-function cl-set-difference "cl-seq" (cl-list1 cl-list2 &rest cl-keys)) + (defun completion-lisp-mode-hook () (require 'cl-lib) (setq completion-syntax-table completion-lisp-syntax-table) -- cgit v1.2.3