From cad63e32bd505644b7dc2e3901bf35899c2ef3c1 Mon Sep 17 00:00:00 2001 From: Jay Belanger Date: Wed, 20 Jun 2007 19:32:49 +0000 Subject: [PATCH] (math-standard-ops): Fix precedence of multiplication. --- lisp/calc/calc.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el index df2ff08b552..6f37568ece4 100644 --- a/lisp/calc/calc.el +++ b/lisp/calc/calc.el @@ -3506,9 +3506,9 @@ See calc-keypad for details." '( "2x" * 196 195 ) math-standard-opers)) (cons - '( "*" * 186 185 ) + '( "*" * 190 191 ) (cons - '( "2x" * 186 185 ) + '( "2x" * 190 191 ) math-standard-opers)))) (defun math-standard-ops-p () -- 2.39.2