branch: elpa/with-editor commit db85a589458eb9745d10280b465c347c1cead8b9 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Depend on compat package --- default.mk | 3 ++- lisp/with-editor.el | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/default.mk b/default.mk index 906b08dbac..ded66c899b 100644 --- a/default.mk +++ b/default.mk @@ -5,7 +5,8 @@ PKG = with-editor ELS = $(PKG).el ELCS = $(ELS:.el=.elc) -DEPS = dash +DEPS = compat +DEPS += dash DOMAIN ?= magit.vc CFRONT_DIST ?= E2LUHBKU1FBV02 diff --git a/lisp/with-editor.el b/lisp/with-editor.el index 63e0e3ca89..6857dd744c 100644 --- a/lisp/with-editor.el +++ b/lisp/with-editor.el @@ -10,7 +10,7 @@ ;; Keywords: tools ;; Homepage: https://github.com/magit/with-editor -;; Package-Requires: ((emacs "25.1")) +;; Package-Requires: ((emacs "25.1") (compat "28.1.1.0")) ;; Package-Version: 3.2.0-git ;; SPDX-License-Identifier: GPL-3.0-or-later @@ -84,6 +84,7 @@ ;;; Code: (require 'cl-lib) +(require 'compat) (require 'server) (require 'shell) (eval-when-compile (require 'subr-x))