Skip to content

Commit

Permalink
emacs/plugin: require older cl library on older emacs
Browse files Browse the repository at this point in the history
Fix for CI.

Signed-off-by: wagner riffel <w@104d.net>
  • Loading branch information
wgrr committed Aug 1, 2021
1 parent 1d5e4e4 commit 0bef0f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugin/emacs/quicklintjs.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@

;;; Code:

(require 'cl-seq)
(if (and (< emacs-major-version 26))
(require 'cl)
(require 'cl-seq))

(defgroup quicklintjs nil
"quick-lint-js finds bugs in JavaScript programs."
Expand Down

0 comments on commit 0bef0f7

Please sign in to comment.