Variable: ses-jump-cell-name-function
ses-jump-cell-name-function is a customizable variable defined in
ses.el.gz.
Value
upcase
Documentation
Function to process the string passed to function ses-jump.
Set it to identity to make no change.
Set it to upcase to make cell name change case isensitive.
May return
* a string, in this case this must be a cell name.
* a (row . col) cons cell, in this case that must be valid cell coordinates.
Source Code
;; Defined in /usr/src/emacs/lisp/ses.el.gz
(defcustom ses-jump-cell-name-function #'upcase
"Function to process the string passed to function `ses-jump'.
Set it to `identity' to make no change.
Set it to `upcase' to make cell name change case isensitive.
May return
* a string, in this case this must be a cell name.
* a (row . col) cons cell, in this case that must be valid cell coordinates."
:type 'function)