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