diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-04-23 14:38:52 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-04-23 14:38:52 (GMT) |
commit | ffd62239ea93e9fa93f1036f03a281ed5d522848 (patch) | |
tree | 8b748d228fe15293a59015eb54ed8341d633a265 /generic/tclTimer.c | |
parent | 6d9d2761b86a20a703ff568b0e3054d4136b7f48 (diff) | |
parent | a05551fb2f2d4f0a8fe3bc93e2afdd7ad0227a7c (diff) | |
download | tcl-ffd62239ea93e9fa93f1036f03a281ed5d522848.zip tcl-ffd62239ea93e9fa93f1036f03a281ed5d522848.tar.gz tcl-ffd62239ea93e9fa93f1036f03a281ed5d522848.tar.bz2 |
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 c5f11c9..2d1cd33 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 |