Function: org-table-current-line
org-table-current-line is a byte-compiled function defined in
org-table.el.gz.
Signature
(org-table-current-line)
Documentation
Return the index of the current data line.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defun org-table-current-line ()
"Return the index of the current data line."
(let ((pos (point)) (end (org-table-end)) (cnt 0))
(save-excursion
(goto-char (org-table-begin))
(while (and (re-search-forward org-table-dataline-regexp end t)
(setq cnt (1+ cnt))
(< (point-at-eol) pos))))
cnt))