diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2024-10-29 02:03:04 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2024-10-29 02:03:04 +0100 |
| commit | 1faaa9696e8d715e5774937ce7d252f9313e23fe (patch) | |
| tree | 427747a59130779d52762054f02dbd63b8b40cf8 /llama.el | |
| parent | 089cf6f80f4e5c89e5b014b431a4d103dee3c219 (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.el | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |
