Skip to content

Commit

Permalink
Require seq-2.24
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsius committed Oct 24, 2023
1 parent 4f67a03 commit 82cd9ca
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lisp/transient.el
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
;; Keywords: extensions

;; Package-Version: 0.4.3
;; Package-Requires: ((emacs "25.1") (compat "29.1.4.1"))
;; Package-Requires: ((emacs "25.1") (compat "29.1.4.1") (seq "2.24"))

;; SPDX-License-Identifier: GPL-3.0-or-later

Expand Down Expand Up @@ -57,6 +57,11 @@
(require 'eieio)
(require 'edmacro)
(require 'format-spec)

(eval-and-compile
(when (and (featurep' seq)
(not (fboundp 'seq-keep)))
(unload-feature 'seq 'force)))
(require 'seq)

(eval-when-compile (require 'subr-x))
Expand Down

0 comments on commit 82cd9ca

Please sign in to comment.