summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authordavygrvy <davygrvy@noemail.net>2001-08-16 09:46:33 (GMT)
committerdavygrvy <davygrvy@noemail.net>2001-08-16 09:46:33 (GMT)
commit38e44f28a67a5d2df6e6e5c50879df496e401f7b (patch)
tree0e3ecba653c946bed50cd5a738c1215e455aac50 /tools
parent588d980c9d625ae9f72dbd07159124fe78328f4f (diff)
downloadtcl-38e44f28a67a5d2df6e6e5c50879df496e401f7b.zip
tcl-38e44f28a67a5d2df6e6e5c50879df496e401f7b.tar.gz
tcl-38e44f28a67a5d2df6e6e5c50879df496e401f7b.tar.bz2
* tools/tcl.wse.in:
* win/tcl.hpj.in: Removed -kb storage in CVS to ensure these text files to make sure they are checked-out in the translation mode CVS is in. Setting these as binary as part of an effort to make sure they are always in CRLF no matter what the CVS translation is bypassing how CVS works. * tools/genStubs.tcl: Removed LF-only output. Having to reconvert back to CRLF for committing to CVS was giving me a headache. FossilOrigin-Name: e97a82dfa5fcb917e71bf4464b40fcccaa8d877e
Diffstat (limited to 'tools')
-rw-r--r--tools/genStubs.tcl5
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/genStubs.tcl b/tools/genStubs.tcl
index ffa7f24..9924d23 100644
--- a/tools/genStubs.tcl
+++ b/tools/genStubs.tcl
@@ -8,7 +8,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.8 2001/05/02 20:42:37 mdejong Exp $
+# RCS: @(#) $Id: genStubs.tcl,v 1.9 2001/08/16 09:46:48 davygrvy Exp $
package require Tcl 8
@@ -182,9 +182,6 @@ proc genStubs::rewriteFile {file text} {
set in [open ${file} r]
set out [open ${file}.new w]
- # Always write out the file with LF termination
- fconfigure $out -translation lf
-
while {![eof $in]} {
set line [gets $in]
if {[regexp {!BEGIN!} $line]} {