Function: ses-insert-ses-range
ses-insert-ses-range is an interactive and byte-compiled function
defined in ses.el.gz.
Signature
(ses-insert-ses-range)
Documentation
Insert "(ses-range x y)" in the minibuffer to represent the currently highlighted range in the spreadsheet.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ses.el.gz
(defun ses-insert-ses-range ()
"Insert \"(ses-range x y)\" in the minibuffer to represent the currently
highlighted range in the spreadsheet."
(interactive "*")
(let (x)
(with-current-buffer (window-buffer minibuffer-scroll-window)
(ses-command-hook) ; For ses-coverage.
(ses-check-curcell 'needrange)
(setq x (format "(ses-range %S %S)"
(car ses--curcell)
(cdr ses--curcell))))
(insert x)))