Function: table-function
table-function is a byte-compiled function defined in table.el.gz.
Signature
(table-function FUNCTION)
Documentation
Return FUNCTION, or a table version of it if applicable.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table-function (function)
;; FIXME: Apparently unused. There used to be table-funcall, table-apply,
;; and table-call-interactively instead, neither of which seemed to be
;; used either.
"Return FUNCTION, or a table version of it if applicable."
(let ((table-func (intern-soft (format "*table--cell-%s" function))))
(if (and table-func
(table--point-in-cell-p))
table-func
function)))