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."
  (and (ses-is-cell-sym-p formula)
    (cl-pushnew (symbol-name formula) ses--symbolic-formulas :test #'string=)))