From 28deb99f386df3eb58792a8f7785860868d24d3d Mon Sep 17 00:00:00 2001 From: dgp Date: Thu, 21 Apr 2005 15:49:45 +0000 Subject: Tcl_GetDoubleFromObj now avoids shimmering away a "wideInt" intrep. --- ChangeLog | 1 + generic/tclObj.c | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5de769c..cbf5ed9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,6 +13,7 @@ to parse leading signs. All of them do, and if any are detected that do not, the correct fix is replacement with compat/strtoul*.c, not a lot of special care by the callers. + Tcl_GetDoubleFromObj now avoids shimmering away a "wideInt" intrep. 2005-04-20 Don Porter diff --git a/generic/tclObj.c b/generic/tclObj.c index 625e70a..4c6b448 100644 --- a/generic/tclObj.c +++ b/generic/tclObj.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclObj.c,v 1.77 2005/04/21 15:23:10 dgp Exp $ + * RCS: @(#) $Id: tclObj.c,v 1.78 2005/04/21 15:49:47 dgp Exp $ */ #include "tclInt.h" @@ -1711,6 +1711,9 @@ Tcl_GetDoubleFromObj(interp, objPtr, dblPtr) } else if (objPtr->typePtr == &tclIntType) { *dblPtr = objPtr->internalRep.longValue; return TCL_OK; + } else if (objPtr->typePtr == &tclWideIntType) { + *dblPtr = objPtr->internalRep.wideValue; + return TCL_OK; } result = SetDoubleFromAny(interp, objPtr); -- cgit v0.12