mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Autoload calc-grab-sum-across and calc-grab-sum-down
* lisp/calc/calc.el (calc-grab-sum-down): (calc-grab-sum-across): Autoload, since they can be used from outside Calc (bug#50311).
This commit is contained in:
parent
45793b195c
commit
4a1505904e
1 changed files with 2 additions and 0 deletions
|
|
@ -3397,12 +3397,14 @@ and all digits are kept, regardless of Calc's current precision."
|
|||
(require 'calc-ext)
|
||||
(calc-do-grab-rectangle top bot arg))
|
||||
|
||||
;;;###autoload
|
||||
(defun calc-grab-sum-down (top bot arg)
|
||||
"Parse a rectangle as a matrix of numbers and sum its columns."
|
||||
(interactive "r\nP")
|
||||
(require 'calc-ext)
|
||||
(calc-do-grab-rectangle top bot arg 'calcFunc-reduced))
|
||||
|
||||
;;;###autoload
|
||||
(defun calc-grab-sum-across (top bot arg)
|
||||
"Parse a rectangle as a matrix of numbers and sum its rows."
|
||||
(interactive "r\nP")
|
||||
|
|
|
|||
Loading…
Reference in a new issue