Function: ses-cell-symbol
ses-cell-symbol is a macro defined in ses.el.gz.
Signature
(ses-cell-symbol ROW &optional COL)
Documentation
Return symbol of the local-variable holding value of CELL or pair (ROW,COL).
For example, (0,0) => A1.
Source Code
;; Defined in /usr/src/emacs/lisp/ses.el.gz
(defmacro ses-cell-symbol (row &optional col)
"Return symbol of the local-variable holding value of CELL or pair (ROW,COL).
For example, (0,0) => A1."
(declare (debug t))
`(ses-cell--symbol ,(if col `(ses-get-cell ,row ,col) row)))