summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2025-03-09 17:22:00 +0100
committerJonas Bernoulli <jonas@bernoul.li>2025-03-09 17:22:00 +0100
commit4d3141aceb70a1c672d1f4e9394037e2407d3a90 (patch)
tree529091c1b4c7fee70168416ff01cab604c2e29cb
parent580ad210e01cb54511aa399614e26feceeb17aaa (diff)
elisp-mode-syntax-propertize: Fix placement of meta comment
-rw-r--r--llama.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/llama.el b/llama.el
index 6d366c7..ba5bcf0 100644
--- a/llama.el
+++ b/llama.el
@@ -272,9 +272,9 @@ explicitly specified `_%3'."
("##" (0 (when (nth 8 (syntax-ppss))
(string-to-syntax "_"))))
;; }}
- ;; Prevent the @ from becoming part of a following symbol.
;; {{ Preserve this part, even though it is absent from
;; this function in 29.1; backporting it by association.
+ ;; Prevent the @ from becoming part of a following symbol.
(",@" (0 (unless (nth 8 (syntax-ppss))
(string-to-syntax "'"))))
;; }}