aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2018-03-23 17:09:51 -0400
committerGlenn Morris2018-03-23 17:09:51 -0400
commitcc8bc2a272da7c801df2cff51d31d72032acf9b4 (patch)
tree06c2a81d8045333f747fd3f6d30f69704a796b51
parent7a00aa02229c0cc0447b07fe6d4a8207f369d830 (diff)
downloademacs-cc8bc2a272da7c801df2cff51d31d72032acf9b4.tar.gz
emacs-cc8bc2a272da7c801df2cff51d31d72032acf9b4.zip
* lisp/progmodes/cc-langs.el: Silence compiler.
-rw-r--r--lisp/progmodes/cc-langs.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/cc-langs.el b/lisp/progmodes/cc-langs.el
index f1ef89a76ad..9913c6feb2b 100644
--- a/lisp/progmodes/cc-langs.el
+++ b/lisp/progmodes/cc-langs.el
@@ -208,9 +208,9 @@ the evaluated constant value at compile time."
208 208
209;; Suppress "might not be defined at runtime" warning. 209;; Suppress "might not be defined at runtime" warning.
210;; This file is only used when compiling other cc files. 210;; This file is only used when compiling other cc files.
211;; These are defined in cl as aliases to the cl- versions. 211(declare-function cl-delete-duplicates "cl-seq" (cl-seq &rest cl-keys))
212;(declare-function delete-duplicates "cl-seq" (cl-seq &rest cl-keys) t) 212(declare-function cl-intersection "cl-seq" (cl-list1 cl-list2 &rest cl-keys))
213;(declare-function mapcan "cl-extra" (cl-func cl-seq &rest cl-rest) t) 213(declare-function cl-set-difference "cl-seq" (cl-list1 cl-list2 &rest cl-keys))
214 214
215(eval-and-compile 215(eval-and-compile
216 ;; Some helper functions used when building the language constants. 216 ;; Some helper functions used when building the language constants.