Function: table--copy-coordinate

table--copy-coordinate is a byte-compiled function defined in table.el.gz.

Signature

(table--copy-coordinate COORD)

Documentation

Copy coordinate in a new cons cell.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--copy-coordinate (coord)
  "Copy coordinate in a new cons cell."
  (cons (car coord) (cdr coord)))