Function: ses-cell-value

ses-cell-value is a macro defined in ses.el.gz.

Signature

(ses-cell-value ROW &optional COL)

Documentation

From a CELL or a pair (ROW,COL), get the current value for that cell.

Source Code

;; Defined in /usr/src/emacs/lisp/ses.el.gz
(defmacro ses-cell-value (row &optional col)
  "From a CELL or a pair (ROW,COL), get the current value for that cell."
  (declare (debug t))
  `(symbol-value (ses-cell-symbol ,row ,col)))