summaryrefslogtreecommitdiffstats
path: root/generic/tkMain.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-01-15 16:58:13 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-01-15 16:58:13 (GMT)
commitfac19b4be19cadfe6aa84116dbdd20a3052e6af8 (patch)
treea3814ae175937a50238675da89530a4df2430c83 /generic/tkMain.c
parent43d95f224b683fa86c4b4620c750bd4b73a41e14 (diff)
parente2b504bf3a2dc5aabd16dd640f75e87553dcf25a (diff)
downloadtk-fac19b4be19cadfe6aa84116dbdd20a3052e6af8.zip
tk-fac19b4be19cadfe6aa84116dbdd20a3052e6af8.tar.gz
tk-fac19b4be19cadfe6aa84116dbdd20a3052e6af8.tar.bz2
Don't use deprecated "case" any more.
Don't do unnecessary Tcl_PkgRequire(..., "Tcl", ...), the preceding Tcl_InitStubs() call already does that, both for dynamic loaded as wel as the static case. Disallow Tk 8.5.x to be loaded in any Tcl 8.5 alpha release.
Diffstat (limited to 'generic/tkMain.c')
-rw-r--r--generic/tkMain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tkMain.c b/generic/tkMain.c
index 74b8557..4d348ef 100644
--- a/generic/tkMain.c
+++ b/generic/tkMain.c
@@ -136,7 +136,7 @@ Tk_MainEx(
* only an issue when Tk is loaded dynamically.
*/
- if (Tcl_InitStubs(interp, "8.5", 0) == NULL) {
+ if (Tcl_InitStubs(interp, "8.5.0", 0) == NULL) {
abort();
}