From: Jay Belanger Date: Mon, 2 May 2005 19:43:25 +0000 (+0000) Subject: (calc-over-notation): Replace string-to-int by string-to-number. X-Git-Tag: ttn-vms-21-2-B4~567 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d227f871c91e27aa7b7c117284f15d88a4eed4a9;p=emacs.git (calc-over-notation): Replace string-to-int by string-to-number. --- diff --git a/lisp/calc/calc-frac.el b/lisp/calc/calc-frac.el index cdb8ac9beb6..87ee59440c3 100644 --- a/lisp/calc/calc-frac.el +++ b/lisp/calc/calc-frac.el @@ -1,6 +1,6 @@ ;;; calc-frac.el --- fraction functions for Calc -;; Copyright (C) 1990, 1991, 1992, 1993, 2001 Free Software Foundation, Inc. +;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2005 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger @@ -56,7 +56,7 @@ (if (string-match "\\`\\([^ 0-9][^ 0-9]?\\)[0-9]*\\'" fmt) (let ((n nil)) (if (/= (match-end 0) (match-end 1)) - (setq n (string-to-int (substring fmt (match-end 1))) + (setq n (string-to-number (substring fmt (match-end 1))) fmt (math-match-substring fmt 1))) (if (eq n 0) (error "Bad denominator")) (calc-change-mode 'calc-frac-format (list fmt n) t))