branch: externals/denote
commit 4891672663278c2310fc14ebc786ec30e9798ce2
Author: Protesilaos Stavrou <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>
Require 'seq' to avoid potential compilation errors
This is mostly as a precaution. Depending on the build of Emacs or the
sequencing of package loading, 'seq' may not be available the moment we
need it.
---
denote.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/denote.el b/denote.el
index 8aea3fab50..62d1b529bf 100644
--- a/denote.el
+++ b/denote.el
@@ -94,6 +94,7 @@
;;; Code:
+(require 'seq)
(eval-when-compile (require 'cl-lib))
(defgroup denote ()