Function: table--transcoord-table-to-cache
table--transcoord-table-to-cache is a byte-compiled function defined
in table.el.gz.
Signature
(table--transcoord-table-to-cache &optional COORDINATE)
Documentation
Transpose COORDINATE from table coordinate system to cache coordinate system.
When COORDINATE is omitted or nil the point in current buffer is assumed in place.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--transcoord-table-to-cache (&optional coordinate)
"Transpose COORDINATE from table coordinate system to cache coordinate system.
When COORDINATE is omitted or nil the point in current buffer is
assumed in place."
(table--offset-coordinate
(or coordinate (table--get-coordinate))
table-cell-info-lu-coordinate
'negative))