aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Belanger2013-04-28 11:39:10 -0500
committerJay Belanger2013-04-28 11:39:10 -0500
commit6eaed04808c270230add70e61124e97a488add92 (patch)
tree9435ed33d2167fa81e4f614b0698f83841221c4b
parentad60824ef15e8c4fd4718f92eca8759cabcec035 (diff)
downloademacs-6eaed04808c270230add70e61124e97a488add92.tar.gz
emacs-6eaed04808c270230add70e61124e97a488add92.zip
* calc/calc.el (math-normalize): Don't set `math-normalize-error' to t
for the less important warnings.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/calc/calc.el2
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 163f2495849..8055106bd31 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
2
3 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
4 to t for the less important warnings.
5
12013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change) 62013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
2 7
3 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268) 8 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el
index c35e7650254..bd5c9089bcc 100644
--- a/lisp/calc/calc.el
+++ b/lisp/calc/calc.el
@@ -2701,7 +2701,6 @@ largest Emacs integer.")
2701 (cons (car math-normalize-a) args)) 2701 (cons (car math-normalize-a) args))
2702 nil) 2702 nil)
2703 (wrong-type-argument 2703 (wrong-type-argument
2704 (setq math-normalize-error t)
2705 (or calc-next-why 2704 (or calc-next-why
2706 (calc-record-why "Wrong type of argument" 2705 (calc-record-why "Wrong type of argument"
2707 (cons (car math-normalize-a) args))) 2706 (cons (car math-normalize-a) args)))
@@ -2712,7 +2711,6 @@ largest Emacs integer.")
2712 (cons (car math-normalize-a) args)) 2711 (cons (car math-normalize-a) args))
2713 nil) 2712 nil)
2714 (inexact-result 2713 (inexact-result
2715 (setq math-normalize-error t)
2716 (calc-record-why "No exact representation for result" 2714 (calc-record-why "No exact representation for result"
2717 (cons (car math-normalize-a) args)) 2715 (cons (car math-normalize-a) args))
2718 nil) 2716 nil)