diff options
author | dgp <dgp@users.sourceforge.net> | 2009-07-16 21:24:38 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2009-07-16 21:24:38 (GMT) |
commit | 47696f530aabf1a5ddab3d36eb8481b469d44397 (patch) | |
tree | 2212f61d925aabd55784a55ed9182b092a9bf383 /generic/tclScan.c | |
parent | b5f035d9c80dbec4986ba4e7e2ba4a1881d90d38 (diff) | |
download | tcl-47696f530aabf1a5ddab3d36eb8481b469d44397.zip tcl-47696f530aabf1a5ddab3d36eb8481b469d44397.tar.gz tcl-47696f530aabf1a5ddab3d36eb8481b469d44397.tar.bz2 |
* generic/tclBinary.c: Removed unused variables.
* generic/tclCmdIL.c:
* generic/tclCompile.c:
* generic/tclExecute.c:
* generic/tclHash.c:
* generic/tclIOUtil.c:
* generic/tclVar.c:
* generic/tclBasic.c: Silence compiler warnings about ClientData.
* generic/tclProc.c:
* generic/tclScan.c: Typo in ACCEPT_NAN configuration.
* generic/tclStrToD.c: Set floating point control register on
MIPS systems so that the gradual underflow expected by Tcl is
in effect. [Bug 2819200]
Diffstat (limited to 'generic/tclScan.c')
-rw-r--r-- | generic/tclScan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclScan.c b/generic/tclScan.c index 07bbedd..47fa025 100644 --- a/generic/tclScan.c +++ b/generic/tclScan.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclScan.c,v 1.31 2009/02/10 23:09:04 nijtmans Exp $ + * RCS: @(#) $Id: tclScan.c,v 1.32 2009/07/16 21:24:40 dgp Exp $ */ #include "tclInt.h" @@ -964,7 +964,7 @@ Tcl_ScanObjCmd( if (Tcl_GetDoubleFromObj(NULL, objPtr, &dvalue) != TCL_OK) { #ifdef ACCEPT_NAN if (objPtr->typePtr == &tclDoubleType) { - dValue = objPtr->internalRep.doubleValue; + dvalue = objPtr->internalRep.doubleValue; } else #endif { |