Function: org-entry-beginning-position

org-entry-beginning-position is a byte-compiled function defined in org.el.gz.

Signature

(org-entry-beginning-position)

Documentation

Return the beginning position of the current entry.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defsubst org-entry-beginning-position ()
  "Return the beginning position of the current entry."
  (save-excursion (org-back-to-heading t) (point)))