Skip to content

Commit

Permalink
emacs25 compatibility: require 'cl since we use lexical-let
Browse files Browse the repository at this point in the history
Related #353
  • Loading branch information
ardumont committed Feb 25, 2017
1 parent 1c684a2 commit 8b75f88
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions org-trello.el
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,9 @@ Please consider upgrading Emacs." emacs-version)

(when (version< emacs-version "24") (error org-trello-error-install-msg))

(when (version< "25" emacs-version)
(require 'cl))

;; Dependency on internal Emacs libs
(require 'org)
(require 'json)
Expand Down

0 comments on commit 8b75f88

Please sign in to comment.