branch: elpa/llama commit e6938b60e117057f5c1f28546bd823903aa1b2eb Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Require compat --- Makefile | 2 +- llama.el | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ce674efca8..aab6b57df6 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ ELCS = $(ELS:.el=.elc) $(PKG).elc: $(PKG)-test.elc: $(PKG).elc -DEPS = +DEPS = compat EMACS ?= emacs EMACS_ARGS ?= --eval "(progn \ diff --git a/llama.el b/llama.el index fb4c6029b3..342aca97ae 100644 --- a/llama.el +++ b/llama.el @@ -7,7 +7,7 @@ ;; Keywords: extensions ;; Package-Version: 0.4.1 -;; Package-Requires: ((emacs "26.1")) +;; Package-Requires: ((emacs "26.1") (compat "30.0.2.0")) ;; SPDX-License-Identifier: GPL-3.0-or-later @@ -82,6 +82,8 @@ ;;; Code: +(require 'compat) + ;;;###autoload (defmacro llama (fn &rest body) "Expand to a `lambda' expression that wraps around FN and BODY.