Function: org-table-put-field-property
org-table-put-field-property is a byte-compiled function defined in
org-table.el.gz.
Signature
(org-table-put-field-property PROP VALUE)
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defun org-table-put-field-property (prop value)
(save-excursion
(put-text-property (progn (skip-chars-backward "^|") (point))
(progn (skip-chars-forward "^|") (point))
prop value)))