Commit 6ea2cce 1 parent 136bedb commit 6ea2cce Copy full SHA for 6ea2cce
File tree 1 file changed +13
-2
lines changed
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 10
10
; ; Keywords: docs libraries packages
11
11
12
12
; ; Package-Version: 2.2.0
13
- ; ; Package-Requires: ((emacs "26.1") (compat "30.0.2.0") (llama "0.6.1"))
13
+ ; ; Package-Requires: (
14
+ ; ; (emacs "26.1")
15
+ ; ; (compat "30.0.2.0")
16
+ ; ; (llama "0.6.1")
17
+ ; ; (seq "2.24"))
14
18
15
19
; ; SPDX-License-Identifier: GPL-3.0-or-later
16
20
45
49
(require 'lisp-mnt )
46
50
(require 'llama )
47
51
(require 'package )
48
- (require 'seq )
49
52
(require 'subr-x )
50
53
54
+ ; ; For older Emacs releases we depend on an updated `seq' release from GNU
55
+ ; ; ELPA, for `seq-keep' . Unfortunately something else may require `seq'
56
+ ; ; before `package' had a chance to put this version on the `load-path' .
57
+ (when (and (featurep 'seq )
58
+ (not (fboundp 'seq-keep )))
59
+ (unload-feature 'seq 'force ))
60
+ (require 'seq )
61
+
51
62
(defgroup elx nil
52
63
" Extract information from Emacs Lisp libraries."
53
64
:group 'maint
You can’t perform that action at this time.
0 commit comments