Function: org-match-line
org-match-line is a byte-compiled function defined in org-macs.el.gz.
Signature
(org-match-line REGEXP)
Documentation
Match REGEXP at the beginning of the current line.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
(defun org-match-line (regexp)
"Match REGEXP at the beginning of the current line."
(save-excursion
(beginning-of-line)
(looking-at regexp)))