Function: org-inlinetask-goto-beginning

org-inlinetask-goto-beginning is a byte-compiled function defined in org-inlinetask.el.gz.

Signature

(org-inlinetask-goto-beginning)

Documentation

Go to the beginning of the inline task at point.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-inlinetask.el.gz
(defun org-inlinetask-goto-beginning ()
  "Go to the beginning of the inline task at point."
  (end-of-line)
  (let ((case-fold-search t)
	(inlinetask-re (org-inlinetask-outline-regexp)))
    (re-search-backward inlinetask-re nil t)
    (when (org-inlinetask-end-p)
      (re-search-backward inlinetask-re nil t))))