branch: elpa/d-mode
commit b682601de38fcb6fc8820f0d11c090fb64102635
Author: Vladimir Panteleev <[email protected]>
Commit: Vladimir Panteleev <[email protected]>
Document cl compilation warning
---
d-mode.el | 3 +++
1 file changed, 3 insertions(+)
diff --git a/d-mode.el b/d-mode.el
index 4af9cec..ea7bc86 100644
--- a/d-mode.el
+++ b/d-mode.el
@@ -73,6 +73,9 @@
(require 'compile)
;; The set-difference function is used from the Common Lisp extensions.
+;; Note that this line produces a compilation warning in Emacs 24 and newer,
+;; however the replacement (cl-seq.el for our use case) was introduced
+;; in the same major version.
(require 'cl)
;; Used to specify regular expressions in a sane way.