Function: table--cell-to-coord

table--cell-to-coord is a byte-compiled function defined in table.el.gz.

Signature

(table--cell-to-coord CELL)

Documentation

Create a cell coordinate pair from cell location pair.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--cell-to-coord (cell)
  "Create a cell coordinate pair from cell location pair."
  (if cell
      (cons (table--get-coordinate (car cell))
	    (table--get-coordinate (cdr cell)))
    nil))