Function: ses-formula-record

ses-formula-record is a byte-compiled function defined in ses.el.gz.

Signature

(ses-formula-record FORMULA)

Documentation

If FORMULA is of the form 'SYMBOL, add it to the list of symbolic formulas for this spreadsheet.

Source Code

;; Defined in /usr/src/emacs/lisp/ses.el.gz
(defun ses-formula-record (formula)
  "If FORMULA is of the form \\='SYMBOL, add it to the list of symbolic formulas
for this spreadsheet."
  (when (and (eq (car-safe formula) 'quote)
	     (symbolp (cadr formula)))
    (add-to-list 'ses--symbolic-formulas
		 (list (symbol-name (cadr formula))))))