From: Jay Belanger Date: Fri, 3 Jul 2009 01:55:40 +0000 (+0000) Subject: (math-use-emacs-fn): Make sure that the number is formatted correctly. X-Git-Tag: emacs-pretest-23.0.96~32 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=654e2858c19fbdafbba19f0928beefa5ec51130e;p=emacs.git (math-use-emacs-fn): Make sure that the number is formatted correctly. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e323c843a2e..a07328a8303 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2009-07-03 Jay Belanger + + * calc-math.el (math-use-emacs-fn): Make sure that the number is + formatted correctly. + 2009-07-02 Nick Roberts * progmodes/gdb-ui.el (def-gdb-auto-update-handler) 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." (number-to-string (funcall fn (string-to-number - (let ((calc-number-radix 10)) + (let + ((calc-number-radix 10) + (calc-float-format (list 'float calc-internal-prec)) + (calc-group-digits nil) + (calc-point-char ".")) (math-format-number (math-float x))))))) (error nil))))))