Function: org-font-lock-add-tag-faces
org-font-lock-add-tag-faces is a byte-compiled function defined in
org.el.gz.
Signature
(org-font-lock-add-tag-faces LIMIT)
Documentation
Add the special tag faces.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-font-lock-add-tag-faces (limit)
"Add the special tag faces."
(when (and org-tag-faces org-tags-special-faces-re)
(while (re-search-forward org-tags-special-faces-re limit t)
(add-face-text-property
(match-beginning 1)
(match-end 1)
(org-get-tag-face 1))
(add-text-properties (match-beginning 1) (match-end 1)
(list 'font-lock-fontified t))
(backward-char 1))))