Function: org-activate-code

org-activate-code is a byte-compiled function defined in org.el.gz.

Signature

(org-activate-code LIMIT)

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-activate-code (limit)
  (when (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
    (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
    (remove-text-properties (match-beginning 0) (match-end 0)
			    '(display t invisible t intangible t))
    t))