summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2024-02-28 14:29:35 +0100
committerJonas Bernoulli <jonas@bernoul.li>2024-02-28 14:29:35 +0100
commit3718ad0df262d33d9f35451468b2ca936b82ae2c (patch)
tree88c0b9d63a099ff51f4de64e7cfe4ed86039eb89
parent55a1caed598804fc4481746cccd115affdf0e449 (diff)
llama--collect: Skip quoted lists
-rw-r--r--llama.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/llama.el b/llama.el
index a0c7549..91fd77c 100644
--- a/llama.el
+++ b/llama.el
@@ -153,7 +153,7 @@ It also looks a bit like #\\='function."
(not (equal data (aref args 1))))
(error "`%s' and `%s' are mutually exclusive" data (aref args 1)))
(aset args pos data)))))
- ((eq (car-safe data) '##))
+ ((memq (car-safe data) '(## quote)))
((listp data)
(while (consp (cdr data))
(llama--collect (car data) args)