Overview
Comment: | Removed dead code |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 4816a85fc11a92182bbe8bbbd75ac3d6a5c21f35 |
User & Date: | rkeene on 2013-09-25 04:30:34 |
Other Links: | manifest | tags |
Context
2013-09-29
| ||
23:17 | Added file "tclkit.ico" to VFS check-in: 079f112af3 user: rkeene tags: trunk | |
2013-09-25
| ||
04:30 | Removed dead code check-in: 4816a85fc1 user: rkeene tags: trunk | |
03:12 | Allow building a TclKit on Win32 using MinGW against Tcl/Tk 8.6.1. check-in: a063fafd1f user: mistachkin tags: trunk | |
Changes
Modified kitsh/buildsrc/kitsh-0.0/main.c from [cac11ec6a8] to [dcb1a6f5fa].
1 1 #ifndef KITSH_NEED_WINMAIN 2 2 #include <tcl.h> 3 3 4 4 int TclKit_AppInit(Tcl_Interp *interp); 5 5 6 6 int main(int argc, char **argv) { 7 - Tcl_Interp *x; 8 - 9 - x = Tcl_CreateInterp(); 10 - 11 7 Tcl_Main(argc, argv, TclKit_AppInit); 12 8 13 9 /* If Tcl_Main() returns, something went wrong */ 14 10 return(1); 15 11 } 16 12 #endif