Variable: ses-relocate-return
ses-relocate-return is a variable defined in ses.el.gz.
Value
nil
Documentation
Set by ses-relocate-formula and ses-relocate-range, read by
ses-relocate-all. Set to delete if a cell-reference was deleted from a
formula--so the formula needs recalculation. Set to range if the size of a
ses-range was changed--so both the formula's value and list of dependents
need to be recalculated.
Source Code
;; Defined in /usr/src/emacs/lisp/ses.el.gz
;;
;; "Side-effect variables". They are set in one function, altered in
;; another as a side effect, then read back by the first, as a way of
;; passing back more than one value. These declarations are just to make
;; the compiler happy, and to conform to standard Emacs Lisp practice (I
;; think the make-local-variable trick above is cleaner).
;;
(defvar ses-relocate-return nil
"Set by `ses-relocate-formula' and `ses-relocate-range', read by
`ses-relocate-all'. Set to `delete' if a cell-reference was deleted from a
formula--so the formula needs recalculation. Set to `range' if the size of a
`ses-range' was changed--so both the formula's value and list of dependents
need to be recalculated.")