Function: llama--match-and-fontify
llama--match-and-fontify is a byte-compiled function defined in
llama.el.
Signature
(llama--match-and-fontify RE END)
Source Code
;; Defined in ~/.emacs.d/elpa/llama-20260301.1253/llama.el
(defun llama--match-and-fontify (re end)
(static-if (fboundp 'bare-symbol)
(and (re-search-forward re end t)
(prog1 t
(save-excursion
(goto-char (match-beginning 0))
(when-let*
((_(save-match-data (not (nth 8 (syntax-ppss)))))
(expr (ignore-errors
(read-positioning-symbols (current-buffer)))))
(put-text-property (match-beginning 0) (point)
'font-lock-multiline t)
(llama--fontify (cdr expr) nil nil t)))))
(list re end))) ; Silence compiler.