Function: org-table-TBLFM-begin
org-table-TBLFM-begin is a byte-compiled function defined in
org-table.el.gz.
Signature
(org-table-TBLFM-begin)
Documentation
Find the beginning of the TBLFM lines and return its position.
Return nil when the beginning of TBLFM line was not found.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defun org-table-TBLFM-begin ()
"Find the beginning of the TBLFM lines and return its position.
Return nil when the beginning of TBLFM line was not found."
(save-excursion
(when (progn (forward-line 1)
(re-search-backward org-table-TBLFM-begin-regexp nil t))
(line-beginning-position 2))))