diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-07-08 20:36:56 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-07-08 20:36:56 (GMT) |
| commit | 0f0bd5de077edd194fa5ef0a30076977098f0e3b (patch) | |
| tree | 3d0d1ca236c06de48c90fb2e2d1ccae3df6529e9 | |
| parent | 35baa585da1c2154b909da93980352a8a2eada82 (diff) | |
| download | tcl-0f0bd5de077edd194fa5ef0a30076977098f0e3b.zip tcl-0f0bd5de077edd194fa5ef0a30076977098f0e3b.tar.gz tcl-0f0bd5de077edd194fa5ef0a30076977098f0e3b.tar.bz2 | |
Unbreak Windows build (broken by [765c9c37a2] due to TIP #628)
| -rw-r--r-- | generic/tclInt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index c0dabcf..697b685 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -1083,6 +1083,7 @@ typedef struct ActiveInterpTrace { #define TCL_TRACE_ENTER_EXEC 1 #define TCL_TRACE_LEAVE_EXEC 2 +#if TCL_MAJOR_VERSION > 8 /* * Versions 0, 1, and 2 are currently supported concurrently for now */ @@ -1167,6 +1168,7 @@ TclObjTypeReplace( { return TclObjTypeHasProc(objPtr, replaceProc)(interp, objPtr, first, numToDelete, numToInsert, insertObjs); } +#endif /* TCL_MAJOR_VERSION > 8 */ /* |
