]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix Calc menu item for vector dot products
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 24 Feb 2021 16:53:53 +0000 (17:53 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 24 Feb 2021 16:53:53 +0000 (17:53 +0100)
* lisp/calc/calc-menu.el (calc-vectors-menu): Use the correct
function `calc-times' instead of the non-existent `calc-mult'
function (bug#46710).

lisp/calc/calc-menu.el

index 16cca055330d07c231087ebd4a9897fbf904972b..ac14e36c63c25a5717c37fdac4731647ef1a42ae 100644 (file)
                :active (>= (calc-stack-size) 2)
                :help "The cross product in R^3"]
               ["(2:) dot (1:)"
-               calc-mult
+               calc-times
                :keys "*"
                :active (>= (calc-stack-size) 2)
                :help "The dot product"]