diff lisp/calc/calc.el @ 81513:9d34273fd331

(math-standard-ops): Fix precedence of multiplication.
author Jay Belanger <jay.p.belanger@gmail.com>
date Wed, 20 Jun 2007 19:32:49 +0000
parents e51a63a95590
children 041563cafc04
line wrap: on
line diff
--- a/lisp/calc/calc.el	Wed Jun 20 18:18:54 2007 +0000
+++ b/lisp/calc/calc.el	Wed Jun 20 19:32:49 2007 +0000
@@ -3506,9 +3506,9 @@
         '( "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 ()