diff options
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclObj.c | 5 |
1 files changed, 4 insertions, 1 deletions
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); |