branch: elpa/flycheck
commit b13548bb396cf4ed13b41fbc195c918266fb41f3
Author: Steve Purcell <[email protected]>
Commit: Bozhidar Batsov <[email protected]>

    Require a recent version of "seq", for "seq-union"
    
    Fixes byte compilation in older Emacsen, see #2121
---
 Eask        | 1 +
 flycheck.el | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/Eask b/Eask
index f9c66ca3b19..81449233c2d 100644
--- a/Eask
+++ b/Eask
@@ -17,6 +17,7 @@
 (source 'melpa)
 
 (depends-on "emacs" "27.1")
+(depends-on "seq" "2.24")
 
 (development
  (depends-on "f")                       ; For some maintenance tools
diff --git a/flycheck.el b/flycheck.el
index 83b3a8e1241..8878330997a 100644
--- a/flycheck.el
+++ b/flycheck.el
@@ -11,7 +11,7 @@
 ;; URL: https://www.flycheck.org
 ;; Keywords: convenience, languages, tools
 ;; Version: 35.0
-;; Package-Requires: ((emacs "27.1"))
+;; Package-Requires: ((emacs "27.1") (seq "2.24"))
 
 ;; This file is not part of GNU Emacs.
 

Reply via email to