branch: externals/transient commit 5ae3c4014eae8e45247a4e4033beb19176cf19ad Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Depend on compat package from GNU Elpa --- default.mk | 2 +- lisp/transient.el | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/default.mk b/default.mk index 1a6ad9ee66..9645e96071 100644 --- a/default.mk +++ b/default.mk @@ -5,7 +5,7 @@ PKG = transient ELS = $(PKG).el ELCS = $(ELS:.el=.elc) -DEPS = +DEPS = compat DOMAIN ?= magit.vc CFRONT_DIST ?= E2LUHBKU1FBV02 diff --git a/lisp/transient.el b/lisp/transient.el index dab09486d7..ee37ce7081 100644 --- a/lisp/transient.el +++ b/lisp/transient.el @@ -6,7 +6,7 @@ ;; Homepage: https://github.com/magit/transient ;; Keywords: bindings -;; Package-Requires: ((emacs "25.1")) +;; Package-Requires: ((emacs "25.1") (compat "28.1.1.0")) ;; Package-Version: 0.3.7-git ;; SPDX-License-Identifier: GPL-3.0-or-later @@ -53,6 +53,7 @@ ;;; Code: (require 'cl-lib) +(require 'compat) (require 'eieio) (require 'edmacro) (require 'format-spec)