diff options
author | davygrvy <davygrvy> | 2007-10-12 01:39:15 (GMT) |
---|---|---|
committer | davygrvy <davygrvy> | 2007-10-12 01:39:15 (GMT) |
commit | 78a502d082e6fdb988d683f5fbae179db64b12e9 (patch) | |
tree | 198fc5e06caaf0cc10f422d1b6eb917653f65ce4 /win/winMain.c | |
parent | 3dfae2d3a033e612d5f467e0b8619ac9f12be2e0 (diff) | |
download | tk-78a502d082e6fdb988d683f5fbae179db64b12e9.zip tk-78a502d082e6fdb988d683f5fbae179db64b12e9.tar.gz tk-78a502d082e6fdb988d683f5fbae179db64b12e9.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.
Diffstat (limited to 'win/winMain.c')
-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; |