# HG changeset patch # User Jay Belanger # Date 1182367969 0 # Node ID 9d34273fd331ce079c84aae5e3110b864a5cd084 # Parent 1214f1b9e278615f29c42e2cecbd9df02b020007 (math-standard-ops): Fix precedence of multiplication. diff -r 1214f1b9e278 -r 9d34273fd331 lisp/calc/calc.el --- 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 ()