diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-11-15 15:00:14 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-11-15 15:00:14 (GMT) |
commit | 212fc8e012dceb9f0f7a0052601ae83466aaca88 (patch) | |
tree | bba6dc6a2219db714d4413de45a1aa2101da03ce /tools | |
parent | a47366b842d20813304b833e28a90cecdde95f33 (diff) | |
download | tcl-212fc8e012dceb9f0f7a0052601ae83466aaca88.zip tcl-212fc8e012dceb9f0f7a0052601ae83466aaca88.tar.gz tcl-212fc8e012dceb9f0f7a0052601ae83466aaca88.tar.bz2 |
Fix bug in genStubs.tcl: If the macosx section doesn't contain any macosx-specific entries, no section at all is created
<p>revert previous workaround in tclInt.decls
Diffstat (limited to 'tools')
-rw-r--r-- | tools/genStubs.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/genStubs.tcl b/tools/genStubs.tcl index c29f6c9..db26629 100644 --- a/tools/genStubs.tcl +++ b/tools/genStubs.tcl @@ -827,7 +827,7 @@ proc genStubs::forAllStubs {name slotProc onAll textVar append text [addPlatformGuard $plat $temp {} true] } ## macosx ## - if {$block(macosx) && !$block(aqua) && !$block(x11)} { + if {($block(unix) || $block(macosx)) && !$block(aqua) && !$block(x11)} { set temp {} set lastNum -1 foreach plat {unix macosx} { |