diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-04-23 14:15:14 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-04-23 14:15:14 (GMT) |
| commit | 6a412a31680977c131b54cc6abd5164dfea17bc4 (patch) | |
| tree | 805c4003273af068deded070c54d4f0cfa0a3f27 /generic/tclTimer.c | |
| parent | 8474c20bc614fa3d46a1b726112fd0376a1f49b6 (diff) | |
| parent | 7554f7ffb1d59d0259f8a49e25421f1fb8c4fe9d (diff) | |
| download | tcl-6a412a31680977c131b54cc6abd5164dfea17bc4.zip tcl-6a412a31680977c131b54cc6abd5164dfea17bc4.tar.gz tcl-6a412a31680977c131b54cc6abd5164dfea17bc4.tar.bz2 | |
Implement Tcl_NewBooleanObj, Tcl_DbNewBooleanObj and Tcl_SetBooleanObj as macros using Tcl_NewIntObj, Tcl_DbNewLongObj and Tcl_SetIntObj.
Starting with Tcl 8.5, this is exactly the same, it only eliminates code duplication.
Eliminate use of NO_WIDE_TYPE everywhere: It's exactly the same as TCL_WIDE_INT_IS_LONG
Diffstat (limited to 'generic/tclTimer.c')
| -rw-r--r-- | generic/tclTimer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclTimer.c b/generic/tclTimer.c index 6b17825..c10986a 100644 --- a/generic/tclTimer.c +++ b/generic/tclTimer.c @@ -819,7 +819,7 @@ Tcl_AfterObjCmd( */ if (objv[1]->typePtr == &tclIntType -#ifndef NO_WIDE_TYPE +#ifndef TCL_WIDE_INT_IS_LONG || objv[1]->typePtr == &tclWideIntType #endif || objv[1]->typePtr == &tclBignumType |
