diff options
author | davygrvy <davygrvy@noemail.net> | 2007-10-12 01:39:15 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@noemail.net> | 2007-10-12 01:39:15 (GMT) |
commit | f3d06509cb0ae435a97a0b6017e47770599c82eb (patch) | |
tree | 198fc5e06caaf0cc10f422d1b6eb917653f65ce4 /win | |
parent | 4eb080caa387b69ba43b3ede46811963d2ae2bfe (diff) | |
download | tk-f3d06509cb0ae435a97a0b6017e47770599c82eb.zip tk-f3d06509cb0ae435a97a0b6017e47770599c82eb.tar.gz tk-f3d06509cb0ae435a97a0b6017e47770599c82eb.tar.bz2 |
* win/winMain.c: Replaced incorrect comments in main() to descibe
why the console widget does not need to be created for this
application entry point (if used). Must have been a bad copy/paste
of WinMain() from 10 years back.
FossilOrigin-Name: 6c87d94b4c751d0ef5532bc963ea5bbab00a696e
Diffstat (limited to 'win')
-rw-r--r-- | win/winMain.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/win/winMain.c b/win/winMain.c index ba1e510..558d0ac 100644 --- a/win/winMain.c +++ b/win/winMain.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: winMain.c,v 1.24 2007/09/07 00:34:58 dgp Exp $ + * RCS: @(#) $Id: winMain.c,v 1.25 2007/10/12 01:39:15 davygrvy Exp $ */ #include "tkInt.h" @@ -274,9 +274,8 @@ main( setlocale(LC_ALL, "C"); /* - * Create the console channels and install them as the standard channels. - * All I/O will be discarded until Tk_CreateConsoleWindow is called to - * attach the console to a text widget. + * Console emulation widget not required as this entry is from the + * console subsystem, thus stdin,out,err already have end-points. */ consoleRequired = FALSE; |