Overview
Comment: | Added start of test for Tk on Win32 with noconsole |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tk-win32-noconsole-fix |
Files: | files | file ages | folders |
SHA1: |
9481ffeac5397b3a2fbf7003585d8c2f |
User & Date: | rkeene on 2014-02-24 17:22:33 |
Other Links: | branch diff | manifest | tags |
Context
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 | |
Changes
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 | 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 |
︙ |