Function: ses-cell-printer
ses-cell-printer is a macro defined in ses.el.gz.
Signature
(ses-cell-printer ROW &optional COL)
Documentation
From a CELL or a pair (ROW,COL), get the function that prints its value.
Source Code
;; Defined in /usr/src/emacs/lisp/ses.el.gz
(defmacro ses-cell-printer (row &optional col)
"From a CELL or a pair (ROW,COL), get the function that prints its value."
(declare (debug t))
`(ses-cell--printer ,(if col `(ses-get-cell ,row ,col) row)))