Function: calc-select-more
calc-select-more is an autoloaded, interactive and byte-compiled
function defined in calc-sel.el.gz.
Signature
(calc-select-more NUM)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-sel.el.gz
(defun calc-select-more (num)
(interactive "P")
(calc-wrapper
(calc-prepare-selection)
(let ((entry calc-selection-cache-entry))
(if (nth 2 entry)
(let ((sel (nth 2 entry)))
(while (and (not (eq sel (car entry)))
(>= (setq num (1- (prefix-numeric-value num))) 0))
(setq sel (calc-find-assoc-parent-formula (car entry) sel)))
(calc-change-current-selection sel))
(calc-select-here num)))))