summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-05-24 19:52:56 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-05-24 19:52:56 (GMT)
commit25419dcfb8439a697f17ce50bd0bf39af2d3913a (patch)
tree6e84cf6bab875aa9d4da86d73404be40fbc6c3ee /tools
parent3628c71caa5cc745e75c919fbf02240131221386 (diff)
parent8c3f25f44adbfa66cfa07f33604abe1b1cfdc588 (diff)
downloadtcl-25419dcfb8439a697f17ce50bd0bf39af2d3913a.zip
tcl-25419dcfb8439a697f17ce50bd0bf39af2d3913a.tar.gz
tcl-25419dcfb8439a697f17ce50bd0bf39af2d3913a.tar.bz2
Take cygwin handling of X11 into account
Implement TclpIsAtty, Cygwin only doc/dde.n: doc fix
Diffstat (limited to 'tools')
-rw-r--r--tools/genStubs.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/genStubs.tcl b/tools/genStubs.tcl
index bb584b2..abfc93e 100644
--- a/tools/genStubs.tcl
+++ b/tools/genStubs.tcl
@@ -299,7 +299,7 @@ proc genStubs::addPlatformGuard {plat iftxt {eltxt {}} {withCygwin 0}} {
append text " && !defined(__CYGWIN__)"
}
append text " && !defined(MAC_TCL)\
- /* UNIX */\n${iftxt}"
+ /* UNIX */\n${iftxt}"
if {$eltxt ne ""} {
append text "#else /* UNIX */\n${eltxt}"
}
@@ -325,7 +325,7 @@ proc genStubs::addPlatformGuard {plat iftxt {eltxt {}} {withCygwin 0}} {
append text " || defined(__CYGWIN__)"
}
append text " || defined(MAC_OSX_TK))\
- /* X11 */\n${iftxt}"
+ /* X11 */\n${iftxt}"
if {$eltxt ne ""} {
append text "#else /* X11 */\n${eltxt}"
}