Function: table--get-property

table--get-property is a byte-compiled function defined in table.el.gz.

Signature

(table--get-property CELL PROPERTY)

Documentation

Get CELL's PROPERTY.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--get-property (cell property)
  "Get CELL's PROPERTY."
  (or (get-text-property (car cell) property)
      (get-text-property (1- (cdr cell)) property)))