branch: elpa/orgit commit 26870d23be559bf2509d4497a205366296c88cbb Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Depend on compat package from GNU Elpa --- Makefile | 3 ++- orgit.el | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7859e69ac1..00cb06fc4d 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,8 @@ PKG = orgit ELS = $(PKG).el ELCS = $(ELS:.el=.elc) -DEPS = dash +DEPS = compat +DEPS += dash DEPS += magit/lisp DEPS += org/lisp DEPS += transient/lisp diff --git a/orgit.el b/orgit.el index a23a8c39f8..b555c3db37 100644 --- a/orgit.el +++ b/orgit.el @@ -5,7 +5,7 @@ ;; Author: Jonas Bernoulli <jo...@bernoul.li> ;; Maintainer: Jonas Bernoulli <jo...@bernoul.li> -;; Package-Requires: ((emacs "25.1") (magit "3.0") (org "9.4")) +;; Package-Requires: ((emacs "25.1") (compat "28.1.1.0") (magit "3.0") (org "9.4")) ;; Package-Version: 1.8.0-git ;; Homepage: https://github.com/magit/orgit ;; SPDX-License-Identifier: GPL-3.0-or-later @@ -91,6 +91,7 @@ ;;; Code: (require 'cl-lib) +(require 'compat) (require 'format-spec) (require 'magit) (require 'org)