From: Jay Belanger Date: Wed, 20 Jun 2007 19:32:49 +0000 (+0000) Subject: (math-standard-ops): Fix precedence of multiplication. X-Git-Tag: emacs-pretest-23.0.90~12190 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cad63e32bd505644b7dc2e3901bf35899c2ef3c1;p=emacs.git (math-standard-ops): Fix precedence of multiplication. --- 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 ()