Function: org-fontify-drawers

org-fontify-drawers is a byte-compiled function defined in org.el.gz.

Signature

(org-fontify-drawers LIMIT)

Documentation

Fontify drawers.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-fontify-drawers (limit)
  "Fontify drawers."
  (when (re-search-forward org-drawer-regexp limit t)
    (add-text-properties (1- (match-beginning 1)) (1+ (match-end 1))
			 '(font-lock-fontified t face org-drawer))
    (org-remove-flyspell-overlays-in
     (line-beginning-position) (line-beginning-position 2))
    t))