Function: table--put-cell-line-property
table--put-cell-line-property is a byte-compiled function defined in
table.el.gz.
Signature
(table--put-cell-line-property BEG END &optional OBJECT)
Documentation
Put standard text properties to a line of a cell.
BEG is the beginning of the line that is the location between left cell border character and the first content character. END is the end of the line that is the location between the last content character and the right cell border character.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--put-cell-line-property (beg end &optional object)
"Put standard text properties to a line of a cell.
BEG is the beginning of the line that is the location between left
cell border character and the first content character. END is the end
of the line that is the location between the last content character
and the right cell border character."
(table--put-cell-content-property beg end object)
(table--put-cell-keymap-property end (1+ end) object)
(table--put-cell-indicator-property end (1+ end) object)
(table--put-cell-rear-nonsticky end (1+ end) object))