diff options
| author | nijtmans <nijtmans> | 2010-11-04 21:48:23 (GMT) |
|---|---|---|
| committer | nijtmans <nijtmans> | 2010-11-04 21:48:23 (GMT) |
| commit | 4ac62b4ea19d84f2a6bbec345abd7c5df3defa4f (patch) | |
| tree | eca4cf58389348cf58a44d588d60ff77e45cbcba /win/tclAppInit.c | |
| parent | 72d217dc13142ebbedc52e82e537c7473d8c3cad (diff) | |
| download | tcl-4ac62b4ea19d84f2a6bbec345abd7c5df3defa4f.zip tcl-4ac62b4ea19d84f2a6bbec345abd7c5df3defa4f.tar.gz tcl-4ac62b4ea19d84f2a6bbec345abd7c5df3defa4f.tar.bz2 | |
[FRQ 491789]: "setargv() doesn't support a unicode cmdline" implemented for Tcl on MSVC++
Diffstat (limited to 'win/tclAppInit.c')
| -rw-r--r-- | win/tclAppInit.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/win/tclAppInit.c b/win/tclAppInit.c index 48962c0..d92109c 100644 --- a/win/tclAppInit.c +++ b/win/tclAppInit.c @@ -12,14 +12,14 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclAppInit.c,v 1.33 2010/09/23 21:40:45 nijtmans Exp $ + * RCS: @(#) $Id: tclAppInit.c,v 1.34 2010/11/04 21:48:23 nijtmans Exp $ */ -/* TODO: This file does not compile in UNICODE mode. - * See [Freq 2965056]: Windows build with -DUNICODE - */ -#undef UNICODE -#undef _UNICODE +#ifndef _MSC_VER +/* On mingw and cygwin this doesn't work yet */ +# undef UNICODE +# undef _UNICODE +#endif #include "tcl.h" #define WIN32_LEAN_AND_MEAN |
