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)
commit5995476331c37a8c9e8e85ca5c2b2db86c43ba44 (patch)
tree6e84cf6bab875aa9d4da86d73404be40fbc6c3ee /tools
parentdfe42eb574aa00b5653a4388eb77a2039c432e1b (diff)
parente17b10feb293574585719b19b3dbee4c3bcab3b0 (diff)
downloadtcl-5995476331c37a8c9e8e85ca5c2b2db86c43ba44.zip
tcl-5995476331c37a8c9e8e85ca5c2b2db86c43ba44.tar.gz
tcl-5995476331c37a8c9e8e85ca5c2b2db86c43ba44.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}"
}