Function: ses-cell-p

ses-cell-p is a byte-compiled function defined in ses.el.gz.

Signature

(ses-cell-p CELL)

Documentation

Return non-nil if CELL is a cell of current buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/ses.el.gz
(defun ses-cell-p (cell)
  "Return non-nil if CELL is a cell of current buffer."
  (and (vectorp cell)
       (= (length cell) 5)
       (eq cell (let ((rowcol (ses-sym-rowcol (ses-cell-symbol cell))))
		  (and (consp rowcol)
		       (ses-get-cell (car rowcol) (cdr rowcol)))))))