diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2025-08-13 21:10:28 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2025-08-13 21:10:28 (GMT) |
| commit | 2fd7fd73696da57d72405a32eee9fed50cb29ab3 (patch) | |
| tree | 231ef5aeb0a978ffd9fd96a6634472aa03d24966 | |
| parent | 2d7d8d6fd145db95955341e292e744a08d651960 (diff) | |
| parent | 2e55b5dd3a4ccf509c744ab8ed13b4547807a697 (diff) | |
| download | tcl-2fd7fd73696da57d72405a32eee9fed50cb29ab3.zip tcl-2fd7fd73696da57d72405a32eee9fed50cb29ab3.tar.gz tcl-2fd7fd73696da57d72405a32eee9fed50cb29ab3.tar.bz2 | |
Merge 9.0
| -rw-r--r-- | generic/tclStringObj.c | 4 | ||||
| -rw-r--r-- | generic/tclTest.c | 2 | ||||
| -rw-r--r-- | generic/tclTestABSList.c | 4 | ||||
| -rw-r--r-- | generic/tclTestObj.c | 6 | ||||
| -rw-r--r-- | unix/dltest/pkgt.c | 2 | ||||
| -rw-r--r-- | win/makefile.vc | 4 |
6 files changed, 11 insertions, 11 deletions
diff --git a/generic/tclStringObj.c b/generic/tclStringObj.c index a709e28..13fbdbc 100644 --- a/generic/tclStringObj.c +++ b/generic/tclStringObj.c @@ -394,7 +394,7 @@ Tcl_GetCharLength( * Optimize the case where we're really dealing with a byte-array object; * we don't need to convert to a string to perform the get-length operation. * - * Starting in Tcl 8.7, we check for a "pure" byte-array, because the + * Starting in Tcl 9.0, we check for a "pure" byte-array, because the * machinery behind that test is using a proper byte-array ObjType. We * could also compute length of an improper byte-array without shimmering * but there's no value in that. We *want* to shimmer an improper byte-array @@ -445,7 +445,7 @@ TclGetCharLength( * Optimize the case where we're really dealing with a byte-array object; * we don't need to convert to a string to perform the get-length operation. * - * Starting in Tcl 8.7, we check for a "pure" byte-array, because the + * Starting in Tcl 9.0, we check for a "pure" byte-array, because the * machinery behind that test is using a proper byte-array ObjType. We * could also compute length of an improper byte-array without shimmering * but there's no value in that. We *want* to shimmer an improper byte-array diff --git a/generic/tclTest.c b/generic/tclTest.c index 2a834ea..ac5eee1 100644 --- a/generic/tclTest.c +++ b/generic/tclTest.c @@ -529,7 +529,7 @@ TestCommonInit( { Tcl_CmdInfo info; - if (Tcl_InitStubs(interp, "8.7-", 0) == NULL) { + if (Tcl_InitStubs(interp, "9.0-", 0) == NULL) { return TCL_ERROR; } if (Tcl_GetCommandInfo(interp, "::tcl::build-info", &info)) { diff --git a/generic/tclTestABSList.c b/generic/tclTestABSList.c index 6c49559..7739b85 100644 --- a/generic/tclTestABSList.c +++ b/generic/tclTestABSList.c @@ -1207,7 +1207,7 @@ lGenObjCmd( * lgen package init */ int Lgen_Init(Tcl_Interp *interp) { - if (Tcl_InitStubs(interp, "8.7", 0) == NULL) { + if (Tcl_InitStubs(interp, "9.0-", 0) == NULL) { return TCL_ERROR; } Tcl_CreateObjCommand(interp, "lgen", lGenObjCmd, NULL, NULL); @@ -1251,7 +1251,7 @@ int Tcl_ABSListTest_Init( Tcl_Interp *interp) { - if (Tcl_InitStubs(interp, "8.7-", 0) == NULL) { + if (Tcl_InitStubs(interp, "9.0-", 0) == NULL) { return TCL_ERROR; } Tcl_CreateObjCommand(interp, "lstring", lLStringObjCmd, NULL, NULL); diff --git a/generic/tclTestObj.c b/generic/tclTestObj.c index 1992b6f..e2b1f6f 100644 --- a/generic/tclTestObj.c +++ b/generic/tclTestObj.c @@ -106,7 +106,7 @@ TclObjTest_Init( Tcl_Obj **varPtr; #ifndef TCL_WITH_EXTERNAL_TOMMATH - if (Tcl_TomMath_InitStubs(interp, "8.7-") == NULL) { + if (Tcl_TomMath_InitStubs(interp, "9.0-") == NULL) { return TCL_ERROR; } #endif @@ -856,8 +856,8 @@ TestintobjCmd( * test a few possible corner cases in list object manipulation from * C code that cannot occur at the Tcl level. * - * Following new commands are added for 8.7 as regression tests for - * memory leaks and use-after-free. Unlike 8.6, 8.7 has multiple internal + * Following new commands are added for 9.0 as regression tests for + * memory leaks and use-after-free. Unlike 8.6, 9.0 has multiple internal * representations for lists. It has to be ensured that corresponding * implementations obey the invariants of the C list API. The script * level tests do not suffice as Tcl list commands do not execute diff --git a/unix/dltest/pkgt.c b/unix/dltest/pkgt.c index 158bd9e..0d3442c 100644 --- a/unix/dltest/pkgt.c +++ b/unix/dltest/pkgt.c @@ -105,7 +105,7 @@ Pkgt_Init( { int code; - if (Tcl_InitStubs(interp, "8.7-", 0) == NULL) { + if (Tcl_InitStubs(interp, "9.0-", 0) == NULL) { return TCL_ERROR; } code = Tcl_PkgProvide(interp, "pkgt", "1.0"); diff --git a/win/makefile.vc b/win/makefile.vc index 40dbcfe..18b9bb6 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -152,14 +152,14 @@ TCLLIBRAW=$(TCLLIB:.dll=-raw.dll) DOTVERSION = $(TCL_MAJOR_VERSION).$(TCL_MINOR_VERSION)
VERSION = $(TCL_MAJOR_VERSION)$(TCL_MINOR_VERSION)
-# The staticpkg option is not longer supported in Tcl 8.7
+# The staticpkg option is not longer supported in Tcl 9.0
# though extensions may still be using it. If specified together
# with "static", ignore it as that is now the default for
# static build. For non-static builds, no longer supported
# now (was permitted in 8.6)
!if $(TCL_USE_STATIC_PACKAGES)
!if $(STATIC_BUILD)
-!message *** NOTE: The "staticpkg" option redundant in 8.7.
+!message *** NOTE: The "staticpkg" option redundant in 9.0.
!else
!message *** NOTE: The "staticpkg" option ignored for shared library builds.
!endif
|
