diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-01-10 08:10:29 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-01-10 08:10:29 (GMT) |
commit | 7b3b30d439640b2474a81ff1b97c8ae264811165 (patch) | |
tree | 05e00c4d3ff33c3693eecf185af839c020854fc1 /macosx/tkMacOSXInit.c | |
parent | 3d9f5433b611ddba5d4c1f219d61bfcde319034f (diff) | |
parent | 44cdf94725d440ad4b97077853722891d2d9cd7d (diff) | |
download | tk-7b3b30d439640b2474a81ff1b97c8ae264811165.zip tk-7b3b30d439640b2474a81ff1b97c8ae264811165.tar.gz tk-7b3b30d439640b2474a81ff1b97c8ae264811165.tar.bz2 |
Fix [9e31fd944934e269121fa78ff56b7b86f33e6db6|9e31fd9449]: X11/X.h and Windows.h have conflicting symbols.
*** POTENTIAL INCOMPATIBILITY *** on Windows only: gcc/clang/MSVC will generate new warnings in extensions when the "None" symbol is used incorrectly.
Those warnings are all fixed in the core, that's what most of this commit is doing.
Diffstat (limited to 'macosx/tkMacOSXInit.c')
-rw-r--r-- | macosx/tkMacOSXInit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/tkMacOSXInit.c b/macosx/tkMacOSXInit.c index 817b68b..9d4d487 100644 --- a/macosx/tkMacOSXInit.c +++ b/macosx/tkMacOSXInit.c @@ -374,7 +374,7 @@ TkpInit( * if displayed before main window. This places console in background and it * accepts input after being raised. */ - + while (Tcl_DoOneEvent(TCL_IDLE_EVENTS)) {} return TCL_OK; |