aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/calc/calc-math.el6
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a0527560fdf..126d0df81b4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
2
3 * calc-math.el (math-use-emacs-fn): Make sure that the number is
4 formatted correctly.
5
12009-07-02 Juri Linkov <juri@jurta.org> 62009-07-02 Juri Linkov <juri@jurta.org>
2 7
3 * info.el: Virtual Info files and nodes. 8 * info.el: Virtual Info files and nodes.
diff --git a/lisp/calc/calc-math.el b/lisp/calc/calc-math.el
index c8e8cc1f052..0f934e0af77 100644
--- a/lisp/calc/calc-math.el
+++ b/lisp/calc/calc-math.el
@@ -106,7 +106,11 @@ If this can't be done, return NIL."
106 (number-to-string 106 (number-to-string
107 (funcall fn 107 (funcall fn
108 (string-to-number 108 (string-to-number
109 (let ((calc-number-radix 10)) 109 (let
110 ((calc-number-radix 10)
111 (calc-float-format (list 'float calc-internal-prec))
112 (calc-group-digits nil)
113 (calc-point-char "."))
110 (math-format-number (math-float x))))))) 114 (math-format-number (math-float x)))))))
111 (error nil)))))) 115 (error nil))))))
112 116