diff options
author | andreas_kupries <akupries@shaw.ca> | 2008-05-23 21:05:13 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2008-05-23 21:05:13 (GMT) |
commit | 6a332b702f97a6c06d57c5e7fc40604cefe40e08 (patch) | |
tree | fa12346b4916af7e6abd32ef69fa0b863f8d930b /tools | |
parent | 330add62d15d66049d37d4e23a769b78074d15ab (diff) | |
download | tcl-6a332b702f97a6c06d57c5e7fc40604cefe40e08.zip tcl-6a332b702f97a6c06d57c5e7fc40604cefe40e08.tar.gz tcl-6a332b702f97a6c06d57c5e7fc40604cefe40e08.tar.bz2 |
Oops. Undo commit of the local tweaks.
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 69f4a84..5172a73 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.27 2008/05/23 21:00:46 andreas_kupries Exp $ +# RCS: @(#) $Id: genStubs.tcl,v 1.28 2008/05/23 21:05:13 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]} { |