Mercurial > emacs
changeset 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 | 1214f1b9e278 |
children | 62a0aff11bd0 |
files | lisp/calc/calc.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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 ()