diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-06 07:35:05 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-06 07:35:05 (GMT) |
commit | d3c1612587ff8f7f288fa96a2daddfdcd0cbff32 (patch) | |
tree | 1de25a0ce1271dddf30868d57471b4c788531f20 /generic/tclInt.h | |
parent | ffd62239ea93e9fa93f1036f03a281ed5d522848 (diff) | |
parent | 9d84efaa149ad0656809cbb06f7c05ffbab65c60 (diff) | |
download | tcl-d3c1612587ff8f7f288fa96a2daddfdcd0cbff32.zip tcl-d3c1612587ff8f7f288fa96a2daddfdcd0cbff32.tar.gz tcl-d3c1612587ff8f7f288fa96a2daddfdcd0cbff32.tar.bz2 |
merge trunk
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 66d262a..e837ca5 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -2625,9 +2625,7 @@ MODULE_SCOPE const Tcl_ObjType tclProcBodyType; MODULE_SCOPE const Tcl_ObjType tclStringType; MODULE_SCOPE const Tcl_ObjType tclArraySearchType; MODULE_SCOPE const Tcl_ObjType tclEnsembleCmdType; -#ifndef TCL_WIDE_INT_IS_LONG MODULE_SCOPE const Tcl_ObjType tclWideIntType; -#endif MODULE_SCOPE const Tcl_ObjType tclRegexpType; MODULE_SCOPE Tcl_ObjType tclCmdNameType; @@ -4376,7 +4374,6 @@ MODULE_SCOPE Tcl_PackageInitProc Procbodytest_SafeInit; * value of strings like: "yes", "no", "true", "false", "on", "off". */ -#ifndef TCL_WIDE_INT_IS_LONG #define TclSetWideIntObj(objPtr, w) \ do { \ TclInvalidateStringRep(objPtr); \ @@ -4384,7 +4381,6 @@ MODULE_SCOPE Tcl_PackageInitProc Procbodytest_SafeInit; (objPtr)->internalRep.wideValue = (Tcl_WideInt)(w); \ (objPtr)->typePtr = &tclWideIntType; \ } while (0) -#endif #define TclSetDoubleObj(objPtr, d) \ do { \ |