summaryrefslogtreecommitdiff
path: root/llama.el
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2023-12-15 17:12:53 +0100
committerJonas Bernoulli <jonas@bernoul.li>2023-12-15 17:12:53 +0100
commit864ac4ba14872f33fa5964ea41f49da817aa465a (patch)
tree663cb577aca89de3ab0be44cf19fdd4ee94016d3 /llama.el
parent0b3af78c11881398302e09d999c0788bde0bb192 (diff)
llama--collect: Fix error message
Diffstat (limited to 'llama.el')
-rw-r--r--llama.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/llama.el b/llama.el
index ef80faa..e56ba69 100644
--- a/llama.el
+++ b/llama.el
@@ -158,7 +158,7 @@ It also looks a bit like #\\='function."
(when (and (= pos 1)
(aref args 1)
(not (equal data (aref args 1))))
- (error "%% and %%1 are mutually exclusive"))
+ (error "`%s' and `%s' are mutually exclusive" data (aref args 1)))
(aset args pos data)))))
((and (not (eq (car-safe data) '##))
(or (listp data)