Function: table--put-cell-indicator-property
table--put-cell-indicator-property is a byte-compiled function defined
in table.el.gz.
Signature
(table--put-cell-indicator-property BEG END &optional OBJECT)
Documentation
Put cell property which indicates that the location is within a table cell.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--put-cell-indicator-property (beg end &optional object)
"Put cell property which indicates that the location is within a table cell."
(put-text-property beg end 'table-cell t object)
(put-text-property beg end 'yank-handler table-yank-handler object))