diff options
author | dgp <dgp@users.sourceforge.net> | 2005-04-19 18:44:18 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-04-19 18:44:18 (GMT) |
commit | ff9ea813259c9bf2575960d7a96807ae43961370 (patch) | |
tree | 3a95229302a6f5da02c4a54ec8564625e20ba3ed /library/init.tcl | |
parent | 7d6158ddbd0deb5c5320cfa94ce50e58bdf6ecfc (diff) | |
download | tcl-ff9ea813259c9bf2575960d7a96807ae43961370.zip tcl-ff9ea813259c9bf2575960d7a96807ae43961370.tar.gz tcl-ff9ea813259c9bf2575960d7a96807ae43961370.tar.bz2 |
typo
Diffstat (limited to 'library/init.tcl')
-rw-r--r-- | library/init.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/init.tcl b/library/init.tcl index a959beb..ecce094 100644 --- a/library/init.tcl +++ b/library/init.tcl @@ -3,7 +3,7 @@ # Default system startup file for Tcl-based applications. Defines # "unknown" procedure and auto-load facilities. # -# RCS: @(#) $Id: init.tcl,v 1.71 2005/04/19 16:32:57 dgp Exp $ +# RCS: @(#) $Id: init.tcl,v 1.72 2005/04/19 18:44:18 dgp Exp $ # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -87,7 +87,7 @@ if {(![interp issafe]) && ($tcl_platform(platform) eq "windows")} { global env tcl_platform foreach p [array names env] { set u [string toupper $p] - if {$u ne $p]} { + if {$u ne $p} { switch -- $u { COMSPEC - PATH { |