]> git.eshelyaron.com Git - emacs.git/commitdiff
(math-use-emacs-fn): Make sure that the number is formatted correctly.
authorJay Belanger <jay.p.belanger@gmail.com>
Fri, 3 Jul 2009 01:55:40 +0000 (01:55 +0000)
committerJay Belanger <jay.p.belanger@gmail.com>
Fri, 3 Jul 2009 01:55:40 +0000 (01:55 +0000)
lisp/ChangeLog
lisp/calc/calc-math.el

index e323c843a2e17ab5c49262a4c3c88662605131de..a07328a83037afd82542df0507eed0c9e2b2e589 100644 (file)
@@ -1,3 +1,8 @@
+2009-07-03  Jay Belanger  <jay.p.belanger@gmail.com>
+
+       * calc-math.el (math-use-emacs-fn): Make sure that the number is
+       formatted correctly.
+
 2009-07-02  Nick Roberts  <nickrob@snap.net.nz>
 
        * progmodes/gdb-ui.el (def-gdb-auto-update-handler)
index c8e8cc1f052ea31a81ab67c4c0264c35c59af2ab..0f934e0af772db7d4b3f6cc28b1496618cc60908 100644 (file)
@@ -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))))))