Skip to content

Commit 0bef0f7

Browse files
committed
emacs/plugin: require older cl library on older emacs
Fix for CI. Signed-off-by: wagner riffel <[email protected]>
1 parent 1d5e4e4 commit 0bef0f7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

plugin/emacs/quicklintjs.el

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55

66
;;; Code:
77

8-
(require 'cl-seq)
8+
(if (and (< emacs-major-version 26))
9+
(require 'cl)
10+
(require 'cl-seq))
911

1012
(defgroup quicklintjs nil
1113
"quick-lint-js finds bugs in JavaScript programs."

0 commit comments

Comments
 (0)