Function: org-match-line

org-match-line is a byte-compiled function defined in org-macs.el.

Signature

(org-match-line REGEXP)

Documentation

Match REGEXP at the beginning of the current line.

Source Code

;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defun org-match-line (regexp)
  "Match REGEXP at the beginning of the current line."
  (save-excursion
    (forward-line 0)
    (looking-at regexp)))