branch: elpa/llama commit 1faaa9696e8d715e5774937ce7d252f9313e23fe Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
llama--fontify: Fix stopping at nested llama expression Fixes [1: ad20e98]. 1: 2024-10-03 ad20e98b6b98ccd6dbdd02217a839b61a01fcdde llama--{collect,fontify}: Stop at nested llama expression --- llama.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/llama.el b/llama.el index 2f2c42009b..1928da3586 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)