summaryrefslogtreecommitdiffstats
path: root/generic/tkMain.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tkMain.c')
-rw-r--r--generic/tkMain.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/generic/tkMain.c b/generic/tkMain.c
index 4419d70..c41715b 100644
--- a/generic/tkMain.c
+++ b/generic/tkMain.c
@@ -247,9 +247,6 @@ Tk_MainEx(
*/
if (NULL == Tcl_GetStartupScript(NULL)) {
-#if !defined(TK_NO_DEPRECATED) && TCL_MAJOR_VERSION < 9
- size_t length;
-#endif
/*
* Check whether first 3 args (argv[1] - argv[3]) look like
@@ -273,14 +270,6 @@ Tk_MainEx(
Tcl_SetStartupScript(NewNativeObj(argv[1]), NULL);
argc--;
i++;
-#if !defined(TK_NO_DEPRECATED) && TCL_MAJOR_VERSION < 9
- } else if ((argc >= 2) && (length = _tcslen(argv[1]))
- && (length > 1) && (0 == _tcsncmp(TEXT("-file"), argv[1], length))
- && ('-' != argv[2][0])) {
- Tcl_SetStartupScript(NewNativeObj(argv[2]), NULL);
- argc -= 2;
- i += 2;
-#endif
}
}