Changes In Branch tk-win32-noconsole-fix Through [9481ffeac5] Excluding Merge-Ins
This is equivalent to a diff from d228cbfac5 to 9481ffeac5
2014-03-03
| ||
21:58 | Merged console fixes in check-in: 4ae3806806 user: rkeene tags: trunk | |
2014-02-25
| ||
02:59 | Updated to use single routine for initializing interpreters Closed-Leaf check-in: be67e6913f user: rkeene tags: tk-win32-noconsole-fix | |
2014-02-24
| ||
17:22 | Added start of test for Tk on Win32 with noconsole check-in: 9481ffeac5 user: rkeene tags: tk-win32-noconsole-fix | |
2014-01-22
| ||
23:34 | Updated to clean up additional projects check-in: d228cbfac5 user: rkeene tags: trunk | |
2014-01-08
| ||
08:26 | Updated to remove some extraneous libraries on Windows from being considered sub-projects check-in: b98cd9cfd8 user: rkeene tags: trunk | |
Modified kitsh/buildsrc/kitsh-0.0/kitInit.c from [9995cd87d7] to [35c2f17362].
︙ | ︙ | |||
391 392 393 394 395 396 397 398 399 400 401 402 403 404 | Tcl_DStringFree(&encodingName); #endif /* TCLKIT_CAN_SET_ENCODING */ /* Hack to get around Tcl bug 1224888. This must be run here and * in LibraryPathObjCmd because this information is needed both * before and after that command is run. */ FindAndSetExecName(interp); return; } #ifndef TCLKIT_DLL int TclKit_AppInit(Tcl_Interp *interp) { #ifdef KIT_INCLUDES_TK | > > > > | 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 | Tcl_DStringFree(&encodingName); #endif /* TCLKIT_CAN_SET_ENCODING */ /* Hack to get around Tcl bug 1224888. This must be run here and * in LibraryPathObjCmd because this information is needed both * before and after that command is run. */ FindAndSetExecName(interp); #if defined(_WIN32) && defined(KIT_INCLUDES_TK) Tk_InitConsoleChannels(interp); #endif /* _WIN32 and KIT_INCLUDES_TK */ return; } #ifndef TCLKIT_DLL int TclKit_AppInit(Tcl_Interp *interp) { #ifdef KIT_INCLUDES_TK |
︙ | ︙ |