aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Belanger2007-06-20 19:36:28 +0000
committerJay Belanger2007-06-20 19:36:28 +0000
commiteaea8b1da70cd22ea96ca20f5494640df9a6a9a2 (patch)
tree4d008ffd0cbe11521cf51726c72268ad125dfb57
parentcad63e32bd505644b7dc2e3901bf35899c2ef3c1 (diff)
downloademacs-eaea8b1da70cd22ea96ca20f5494640df9a6a9a2.tar.gz
emacs-eaea8b1da70cd22ea96ca20f5494640df9a6a9a2.zip
(Basic Arithmetic, Customizing Calc): Make description of
the variable `calc-multiplication-has-precedence' match its effect.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--man/ChangeLog6
-rw-r--r--man/calc.texi14
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 @@
12007-06-20 Jay Belanger <jay.p.belanger@gmail.com>
2
3 * calc/calc.el (math-standard-ops): Fix precedence of
4 multiplication.
5
12007-06-20 Stefan Monnier <monnier@iro.umontreal.ca> 62007-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 @@
12007-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
12007-06-19 Jay Belanger <jay.p.belanger@gmail.com> 72007-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
15987Calc may change the precedence depending on the language mode being used. 15987Calc 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
15989the customizable variable @code{calc-multiplication-has-precedence} to 15989the 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
15991precedence than multiplication. Note that Calc's default choice of 15991division equal precedences. Note that Calc's default choice of
15992precedence allows @samp{a b / c d} to be used as a shortcut for 15992precedence 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
35180The variable @code{calc-multiplication-has-precedence} determines 35180The variable @code{calc-multiplication-has-precedence} determines
35181whether multiplication or division has precedence in algebraic formulas 35181whether multiplication has precedence over division in algebraic formulas
35182in normal language modes. If @code{calc-multiplication-has-precedence} 35182in normal language modes. If @code{calc-multiplication-has-precedence}
35183is non-@code{nil}, then multiplication has precedence, and so for 35183is non-@code{nil}, then multiplication has precedence, and so for
35184example @samp{a/b*c} will be interpreted as @samp{a/(b*c)}. If 35184example @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
35186has precedence, and so for example @samp{a/b*c} will be interpreted as 35186multiplication 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}. 35188of @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