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/tclTestObj.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/tclTestObj.c')
| -rw-r--r-- | generic/tclTestObj.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/tclTestObj.c b/generic/tclTestObj.c index 1a07b87..51e91cf 100644 --- a/generic/tclTestObj.c +++ b/generic/tclTestObj.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclTestObj.c,v 1.14 2005/06/07 09:18:14 dkf Exp $ + * RCS: @(#) $Id: tclTestObj.c,v 1.15 2005/10/08 14:42:45 dgp Exp $ */ #include "tclInt.h" @@ -45,9 +45,11 @@ static int TestbignumobjCmd _ANSI_ARGS_((ClientData dummy, static int TestbooleanobjCmd _ANSI_ARGS_((ClientData dummy, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); +#if 0 static int TestconvertobjCmd _ANSI_ARGS_((ClientData dummy, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); +#endif static int TestdoubleobjCmd _ANSI_ARGS_((ClientData dummy, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); @@ -104,8 +106,10 @@ TclObjTest_Init(interp) (ClientData) 0, (Tcl_CmdDeleteProc*) NULL ); Tcl_CreateObjCommand(interp, "testbooleanobj", TestbooleanobjCmd, (ClientData) 0, (Tcl_CmdDeleteProc *) NULL); +#if 0 Tcl_CreateObjCommand(interp, "testconvertobj", TestconvertobjCmd, (ClientData) 0, (Tcl_CmdDeleteProc *) NULL); +#endif Tcl_CreateObjCommand(interp, "testdoubleobj", TestdoubleobjCmd, (ClientData) 0, (Tcl_CmdDeleteProc *) NULL); Tcl_CreateObjCommand(interp, "testintobj", TestintobjCmd, @@ -370,6 +374,7 @@ TestbooleanobjCmd(clientData, interp, objc, objv) return TCL_OK; } +#if 0 /* *---------------------------------------------------------------------- * @@ -423,6 +428,7 @@ TestconvertobjCmd(clientData, interp, objc, objv) } return TCL_OK; } +#endif /* *---------------------------------------------------------------------- |
