Function: table--put-property
table--put-property is a byte-compiled function defined in
table.el.gz.
Signature
(table--put-property CELL PROPERTY VALUE)
Documentation
Put CELL's PROPERTY the VALUE.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--put-property (cell property value)
"Put CELL's PROPERTY the VALUE."
(let ((beg (car cell))
(end (cdr cell)))
(put-text-property beg (1+ beg) property value)
(put-text-property (1- end) end property value)))