diff options
| author | dgp@users.sourceforge.net <dgp> | 2005-10-08 14:42:44 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2005-10-08 14:42:44 (GMT) |
| commit | 64b25366339b8dc67854f43d60ad6583dc5b529e (patch) | |
| tree | 7e3de1d0523d70328cfd81d9864b897058823d34 /generic/tclCmdAH.c | |
| parent | 0338f802509b8504448b30fc548e55ce095702f3 (diff) | |
| download | tcl-64b25366339b8dc67854f43d60ad6583dc5b529e.zip tcl-64b25366339b8dc67854f43d60ad6583dc5b529e.tar.gz tcl-64b25366339b8dc67854f43d60ad6583dc5b529e.tar.bz2 | |
TIP#237 IMPLEMENTATION
[kennykb-numerics-branch] Resynchronized with the HEAD; at this
checkpoint [-rkennykb-numerics-branch-20051008], the HEAD and
kennykb-numerics-branch contain identical code.
Diffstat (limited to 'generic/tclCmdAH.c')
| -rw-r--r-- | generic/tclCmdAH.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclCmdAH.c b/generic/tclCmdAH.c index a5124c2..18e7f01 100644 --- a/generic/tclCmdAH.c +++ b/generic/tclCmdAH.c @@ -10,12 +10,14 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCmdAH.c,v 1.68 2005/09/14 21:32:17 dgp Exp $ + * RCS: @(#) $Id: tclCmdAH.c,v 1.69 2005/10/08 14:42:44 dgp Exp $ */ #include "tclInt.h" #include <locale.h> +#define NEW_FORMAT 1 + /* * Prototypes for local procedures defined in this file: */ @@ -2245,6 +2247,7 @@ Tcl_FormatObjCmd(dummy, interp, objc, objv) case 'G': if (Tcl_GetDoubleFromObj(interp, /* INTL: Tcl source. */ objv[objIndex], &doubleValue) != TCL_OK) { + /*TODO: figure out ACCEPT_NAN */ goto fmtError; } whichValue = DOUBLE_VALUE; |
