diff options
| author | Jay Belanger | 2007-06-20 19:32:49 +0000 |
|---|---|---|
| committer | Jay Belanger | 2007-06-20 19:32:49 +0000 |
| commit | cad63e32bd505644b7dc2e3901bf35899c2ef3c1 (patch) | |
| tree | 4df97047b2c9a095e321b0657ba5d2ddfc5c4b16 | |
| parent | 37320a581fa117195faaf6f99ed87f611116216e (diff) | |
| download | emacs-cad63e32bd505644b7dc2e3901bf35899c2ef3c1.tar.gz emacs-cad63e32bd505644b7dc2e3901bf35899c2ef3c1.zip | |
(math-standard-ops): Fix precedence of multiplication.
| -rw-r--r-- | lisp/calc/calc.el | 4 |
1 files 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." | |||
| 3506 | '( "2x" * 196 195 ) | 3506 | '( "2x" * 196 195 ) |
| 3507 | math-standard-opers)) | 3507 | math-standard-opers)) |
| 3508 | (cons | 3508 | (cons |
| 3509 | '( "*" * 186 185 ) | 3509 | '( "*" * 190 191 ) |
| 3510 | (cons | 3510 | (cons |
| 3511 | '( "2x" * 186 185 ) | 3511 | '( "2x" * 190 191 ) |
| 3512 | math-standard-opers)))) | 3512 | math-standard-opers)))) |
| 3513 | 3513 | ||
| 3514 | (defun math-standard-ops-p () | 3514 | (defun math-standard-ops-p () |