Function: table--get-coordinate
table--get-coordinate is a byte-compiled function defined in
table.el.gz.
Signature
(table--get-coordinate &optional WHERE)
Documentation
Return the coordinate of point in current buffer.
When optional WHERE is given it returns the coordinate of that location instead of point in the current buffer. It does not move the point
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--get-coordinate (&optional where)
"Return the coordinate of point in current buffer.
When optional WHERE is given it returns the coordinate of that
location instead of point in the current buffer. It does not move the
point"
(save-excursion
(if where (goto-char where))
(cons (current-column)
(table--current-line))))