diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | man/ChangeLog | 6 | ||||
| -rw-r--r-- | man/calc.texi | 14 |
3 files changed, 18 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7ad751b0475..c2d25f1ca30 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-06-20 Jay Belanger <jay.p.belanger@gmail.com> | ||
| 2 | |||
| 3 | * calc/calc.el (math-standard-ops): Fix precedence of | ||
| 4 | multiplication. | ||
| 5 | |||
| 1 | 2007-06-20 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2007-06-20 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * vc.el (vc-default-log-view-mode): New function. | 8 | * vc.el (vc-default-log-view-mode): New function. |
diff --git a/man/ChangeLog b/man/ChangeLog index 8de0d9807f2..1c6d1dbf16b 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2007-06-20 Jay Belanger <jay.p.belanger@gmail.com> | ||
| 2 | |||
| 3 | * calc.texi (Basic Arithmetic, Customizing Calc): | ||
| 4 | Make description of the variable `calc-multiplication-has-precedence' | ||
| 5 | match its new effect. | ||
| 6 | |||
| 1 | 2007-06-19 Jay Belanger <jay.p.belanger@gmail.com> | 7 | 2007-06-19 Jay Belanger <jay.p.belanger@gmail.com> |
| 2 | 8 | ||
| 3 | * calc.texi (Basic Arithmetic, Customizing Calc): Mention | 9 | * calc.texi (Basic Arithmetic, Customizing Calc): Mention |
diff --git a/man/calc.texi b/man/calc.texi index 01c153a230a..3151d9b7b92 100644 --- a/man/calc.texi +++ b/man/calc.texi | |||
| @@ -15987,8 +15987,8 @@ multiplication. (This is not standard across all computer languages, and | |||
| 15987 | Calc may change the precedence depending on the language mode being used. | 15987 | Calc may change the precedence depending on the language mode being used. |
| 15988 | @xref{Language Modes}.) This default ordering can be changed by setting | 15988 | @xref{Language Modes}.) This default ordering can be changed by setting |
| 15989 | the customizable variable @code{calc-multiplication-has-precedence} to | 15989 | the customizable variable @code{calc-multiplication-has-precedence} to |
| 15990 | @code{nil} (@pxref{Customizing Calc}); this will give division a higher | 15990 | @code{nil} (@pxref{Customizing Calc}); this will give multiplication and |
| 15991 | precedence than multiplication. Note that Calc's default choice of | 15991 | division equal precedences. Note that Calc's default choice of |
| 15992 | precedence allows @samp{a b / c d} to be used as a shortcut for | 15992 | precedence allows @samp{a b / c d} to be used as a shortcut for |
| 15993 | @smallexample | 15993 | @smallexample |
| 15994 | @group | 15994 | @group |
| @@ -35178,14 +35178,14 @@ and @code{calc-embedded-open-close-plain-alist}. | |||
| 35178 | 35178 | ||
| 35179 | @defvar calc-multiplication-has-precedence | 35179 | @defvar calc-multiplication-has-precedence |
| 35180 | The variable @code{calc-multiplication-has-precedence} determines | 35180 | The variable @code{calc-multiplication-has-precedence} determines |
| 35181 | whether multiplication or division has precedence in algebraic formulas | 35181 | whether multiplication has precedence over division in algebraic formulas |
| 35182 | in normal language modes. If @code{calc-multiplication-has-precedence} | 35182 | in normal language modes. If @code{calc-multiplication-has-precedence} |
| 35183 | is non-@code{nil}, then multiplication has precedence, and so for | 35183 | is non-@code{nil}, then multiplication has precedence, and so for |
| 35184 | example @samp{a/b*c} will be interpreted as @samp{a/(b*c)}. If | 35184 | example @samp{a/b*c} will be interpreted as @samp{a/(b*c)}. If |
| 35185 | @code{calc-multiplication-has-precedence} is @code{nil}, then division | 35185 | @code{calc-multiplication-has-precedence} is @code{nil}, then |
| 35186 | has precedence, and so for example @samp{a/b*c} will be interpreted as | 35186 | multiplication has the same precedence as division, and so for example |
| 35187 | @samp{(a/b)*c}. The default value of | 35187 | @samp{a/b*c} will be interpreted as @samp{(a/b)*c}. The default value |
| 35188 | @code{calc-multiplication-has-precedence} is @code{t}. | 35188 | of @code{calc-multiplication-has-precedence} is @code{t}. |
| 35189 | @end defvar | 35189 | @end defvar |
| 35190 | 35190 | ||
| 35191 | @node Reporting Bugs, Summary, Customizing Calc, Top | 35191 | @node Reporting Bugs, Summary, Customizing Calc, Top |