branch: elpa/llama
commit 3718ad0df262d33d9f35451468b2ca936b82ae2c
Author: Jonas Bernoulli <jo...@bernoul.li>
Commit: Jonas Bernoulli <jo...@bernoul.li>

    llama--collect: Skip quoted lists
---
 llama.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llama.el b/llama.el
index a0c7549652..91fd77ce0c 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)

Reply via email to