diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2002-10-04 08:25:13 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2002-10-04 08:25:13 (GMT) |
commit | 8b5013b1b9899efdf0690cd7aa23b480e50775d6 (patch) | |
tree | 1ba2dff796f88e495395621c243de97a259aceb6 /tools/eolFix.tcl | |
parent | c5b3649d3b52b166ea82c04d1db2e8148457f80f (diff) | |
download | tcl-8b5013b1b9899efdf0690cd7aa23b480e50775d6.zip tcl-8b5013b1b9899efdf0690cd7aa23b480e50775d6.tar.gz tcl-8b5013b1b9899efdf0690cd7aa23b480e50775d6.tar.bz2 |
[file exist] -> [file exists]...
Diffstat (limited to 'tools/eolFix.tcl')
-rw-r--r-- | tools/eolFix.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/eolFix.tcl b/tools/eolFix.tcl index 11c410d..ed3ec7c 100644 --- a/tools/eolFix.tcl +++ b/tools/eolFix.tcl @@ -16,7 +16,7 @@ namespace eval ::EOL { proc EOL::fix {filename {newfilename ""}} { variable outMode - if {![file exist $filename]} { return } + if {![file exists $filename]} { return } puts "EOL Fixing: $filename" file rename ${filename} ${filename}.o |