diff options
author | dgp <dgp@users.sourceforge.net> | 2009-07-16 20:50:53 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2009-07-16 20:50:53 (GMT) |
commit | 5c9038b30eadc53a06bd92249b583ab15f71c1c7 (patch) | |
tree | b5b2733030e6c8eea0ea745246839c42469ecc7c /generic/tclScan.c | |
parent | 4ddce8d6445b7a711133a230e5c070aeb22f95de (diff) | |
download | tcl-5c9038b30eadc53a06bd92249b583ab15f71c1c7.zip tcl-5c9038b30eadc53a06bd92249b583ab15f71c1c7.tar.gz tcl-5c9038b30eadc53a06bd92249b583ab15f71c1c7.tar.bz2 |
* generic/tclCmdIL.c: Removed unused variables.
* generic/tclCompile.c:
* generic/tclVar.c:
* unix/tclUnixChan.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 25ef913..9bd11c1 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.27 2007/12/13 15:23:20 dgp Exp $ + * RCS: @(#) $Id: tclScan.c,v 1.27.2.1 2009/07/16 20:50:54 dgp Exp $ */ #include "tclInt.h" @@ -959,7 +959,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 { |