diff options
author | Kevin B Kenny <kennykb@acm.org> | 2005-04-13 19:28:44 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2005-04-13 19:28:44 (GMT) |
commit | 542e26909ff74475784c87d36451da9fba244974 (patch) | |
tree | 78a9dd782e7183786326950da5732b225b195b16 /library | |
parent | 88876140f24ed52414615719e0e817624d9e98d9 (diff) | |
download | tcl-542e26909ff74475784c87d36451da9fba244974.zip tcl-542e26909ff74475784c87d36451da9fba244974.tar.gz tcl-542e26909ff74475784c87d36451da9fba244974.tar.bz2 |
Performance improvement in [clock] - FR 1182459
Diffstat (limited to 'library')
-rw-r--r-- | library/clock.tcl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/clock.tcl b/library/clock.tcl index d47429c..337ed5a 100644 --- a/library/clock.tcl +++ b/library/clock.tcl @@ -13,7 +13,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: clock.tcl,v 1.13 2004/12/29 20:57:28 kennykb Exp $ +# RCS: @(#) $Id: clock.tcl,v 1.14 2005/04/13 19:28:51 kennykb Exp $ # #---------------------------------------------------------------------- @@ -707,7 +707,7 @@ proc ::tcl::clock::format { args } { set state {} set retval {} foreach char [split $format {}] { - switch -exact $state { + switch -exact -- $state { {} { if { [string equal % $char] } { set state percent @@ -4411,7 +4411,7 @@ proc ::tcl::clock::GetJulianDayFromEraYearMonthDay { date } { # Get absolute year number from the civil year - switch -exact [dict get $date era] { + switch -exact -- [dict get $date era] { BCE { set year [expr { 1 - [dict get $date year] }] } @@ -4493,7 +4493,7 @@ proc ::tcl::clock::GetJulianDayFromEraYearDay { date } { # Get absolute year number from the civil year - switch -exact [dict get $date era] { + switch -exact -- [dict get $date era] { BCE { set year [expr { 1 - [dict get $date year] }] } |