Function: calc-grab-region
calc-grab-region is an autoloaded, interactive and byte-compiled
function defined in calc.el.gz.
Signature
(calc-grab-region TOP BOT ARG)
Documentation
Parse the region as a vector of numbers and push it on the Calculator stack.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc.el.gz
;;;###autoload
(defun calc-grab-region (top bot arg)
"Parse the region as a vector of numbers and push it on the Calculator stack."
(interactive "r\nP")
(require 'calc-ext)
(if rectangle-mark-mode
(calc-do-grab-rectangle top bot arg)
(calc-do-grab-region top bot arg)))