summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authorandreas_kupries <andreas_kupries@noemail.net>2006-09-25 17:27:29 (GMT)
committerandreas_kupries <andreas_kupries@noemail.net>2006-09-25 17:27:29 (GMT)
commit200eba735214d1ca29a0e34d4f00bc679cc7f448 (patch)
treee2c81d0debb8bfdd5414cdc94ea611c45bfe5b1b /generic/tclBasic.c
parent2a69ce16e7c34d2669f174be9349868a34ba362b (diff)
downloadtcl-200eba735214d1ca29a0e34d4f00bc679cc7f448.zip
tcl-200eba735214d1ca29a0e34d4f00bc679cc7f448.tar.gz
tcl-200eba735214d1ca29a0e34d4f00bc679cc7f448.tar.bz2
* generic/tclBasic.c: Reverted exposure of patchlevel in
registered core version when TIP#268 features are activated. Better compatibility with existing packages. Like Tk. FossilOrigin-Name: 034d4274109d393882be49929c350df2a68ee582
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index d746ff5..9807a19 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclBasic.c,v 1.75.2.23 2006/09/22 01:26:22 andreas_kupries Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.75.2.24 2006/09/25 17:27:31 andreas_kupries Exp $
*/
#include "tclInt.h"
@@ -578,16 +578,16 @@ Tcl_CreateInterp()
/*
* Register Tcl's version number.
- * TIP #268: Full patchlevel instead of just major.minor
+ * TIP#268: Expose information about its status,
+ * for runtime switches in the core library
+ * and tests.
*/
-#ifndef TCL_TIP268
Tcl_PkgProvideEx(interp, "Tcl", TCL_VERSION, (ClientData) &tclStubs);
-#else
+
+#ifdef TCL_TIP268
Tcl_SetVar2(interp, "tcl_platform", "tip,268", "1",
TCL_GLOBAL_ONLY);
-
- Tcl_PkgProvideEx(interp, "Tcl", TCL_PATCH_LEVEL, (ClientData) &tclStubs);
#endif
#ifdef Tcl_InitStubs
#undef Tcl_InitStubs