diff options
author | andreas_kupries <akupries@shaw.ca> | 2009-07-23 23:01:59 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2009-07-23 23:01:59 (GMT) |
commit | 2bab3ed49e96d767dafcf287960de0598225dfa1 (patch) | |
tree | 0ab739ed519a0e3f72b491c2b441c7acd6f9c66d /tools | |
parent | bd734d2cf44d9550acd5c2ca3e6c5b17f9b03f72 (diff) | |
download | tcl-2bab3ed49e96d767dafcf287960de0598225dfa1.zip tcl-2bab3ed49e96d767dafcf287960de0598225dfa1.tar.gz tcl-2bab3ed49e96d767dafcf287960de0598225dfa1.tar.bz2 |
Revert series of local changes not relevant to the last commit.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/genStubs.tcl | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/genStubs.tcl b/tools/genStubs.tcl index 96a1a83..03f7ba5 100644 --- a/tools/genStubs.tcl +++ b/tools/genStubs.tcl @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: genStubs.tcl,v 1.30 2009/07/23 22:49:15 andreas_kupries Exp $ +# RCS: @(#) $Id: genStubs.tcl,v 1.31 2009/07/23 23:02:00 andreas_kupries Exp $ package require Tcl 8.4 @@ -208,9 +208,6 @@ proc genStubs::rewriteFile {file text} { set in [open ${file} r] set out [open ${file}.new w] - # Hardwire the genstubs output to Unix eol. - fconfigure $out -translation lf - while {![eof $in]} { set line [gets $in] if {[string match "*!BEGIN!*" $line]} { |