Function: ses-get-cell

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

Signature

(ses-get-cell ROW COL)

Documentation

Return the cell structure that stores information about cell (ROW,COL).

Source Code

;; Defined in /usr/src/emacs/lisp/ses.el.gz
;;----------------------------------------------------------------------------
;; Macros
;;----------------------------------------------------------------------------

(defmacro ses-get-cell (row col)
  "Return the cell structure that stores information about cell (ROW,COL)."
  (declare (debug t))
  `(aref (aref ses--cells ,row) ,col))