]> git.eshelyaron.com Git - emacs.git/commitdiff
Autoload calc-grab-sum-across and calc-grab-sum-down
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 1 Sep 2021 08:14:33 +0000 (10:14 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 1 Sep 2021 08:14:33 +0000 (10:14 +0200)
* lisp/calc/calc.el (calc-grab-sum-down):
(calc-grab-sum-across): Autoload, since they can be used from
outside Calc (bug#50311).

lisp/calc/calc.el

index a10b3178302f38b5e7ae64d0365729f290642eb7..27a6cff627c01ce0dc1636bed4ed5a9c7a2a4799 100644 (file)
@@ -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")