summaryrefslogtreecommitdiff
path: root/llama.el
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2024-10-29 02:03:04 +0100
committerJonas Bernoulli <jonas@bernoul.li>2024-10-29 02:03:04 +0100
commit1faaa9696e8d715e5774937ce7d252f9313e23fe (patch)
tree427747a59130779d52762054f02dbd63b8b40cf8 /llama.el
parent089cf6f80f4e5c89e5b014b431a4d103dee3c219 (diff)
llama--fontify: Fix stopping at nested llama expression
Fixes [1: ad20e98]. 1: 2024-10-03 ad20e98b6b98ccd6dbdd02217a839b61a01fcdde llama--{collect,fontify}: Stop at nested llama expression
Diffstat (limited to 'llama.el')
-rw-r--r--llama.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/llama.el b/llama.el
index 2f2c420..1928da3 100644
--- a/llama.el
+++ b/llama.el
@@ -401,7 +401,9 @@ expansion, and the looks of this face should hint at that.")
((null expr) expr)
((eq (car-safe expr) 'quote))
((eq (ignore-errors (bare-symbol (car-safe expr))) 'quote))
- ((and (memq (car-safe expr) (list (intern "") 'llama)) (not top)))
+ ((and (memq (ignore-errors (bare-symbol (car-safe expr)))
+ (list (intern "") 'llama))
+ (not top)))
((and backquoted (symbol-with-pos-p expr)))
((and backquoted
(memq (car-safe expr)