summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2025-01-17 17:25:27 +0100
committerJonas Bernoulli <jonas@bernoul.li>2025-01-17 17:25:27 +0100
commite6938b60e117057f5c1f28546bd823903aa1b2eb (patch)
tree01d37b337b133fd77ddd8333a931470b0b63ba8a
parent04b9b6849df47f6722417c2cb67e66bf97842319 (diff)
Require compat
-rw-r--r--Makefile2
-rw-r--r--llama.el4
2 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ce674ef..aab6b57 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 fb4c602..342aca9 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.