diff options
Diffstat (limited to 'library/clock.tcl')
-rw-r--r-- | library/clock.tcl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/clock.tcl b/library/clock.tcl index 61f905b..523fc1e 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.36 2006/10/23 22:49:25 msofer Exp $ +# RCS: @(#) $Id: clock.tcl,v 1.37 2006/10/31 13:46:33 dkf Exp $ # #---------------------------------------------------------------------- @@ -653,7 +653,7 @@ proc ::tcl::clock::format { args } { # Check the count of args if { [llength $args] < 1 || [llength $args] % 2 != 1 } { - set cmdName [lrange [info level 0] 0 end-[llength $args]] + set cmdName "clock format" return -code error \ -errorcode [list CLOCK wrongNumArgs] \ "wrong \# args: should be\ @@ -1244,7 +1244,7 @@ proc ::tcl::clock::scan { args } { # Check the count of args if { [llength $args] < 1 || [llength $args] % 2 != 1 } { - set cmdName [lrange [info level 0] 0 end-[llength $args]] + set cmdName "clock scan" return -code error \ -errorcode [list CLOCK wrongNumArgs] \ "wrong \# args: should be\ @@ -4318,11 +4318,11 @@ proc ::tcl::clock::BSearch { list key } { proc ::tcl::clock::add { clockval args } { if { [llength $args] % 2 != 0 } { + set cmdName "clock add" return -code error \ -errorcode [list CLOCK wrongNumArgs] \ "wrong \# args: should be\ - \"[lindex [info level 0] 0] clockval\ - ?number units?...\ + \"$cmdName clockval ?number units?...\ ?-gmt boolean? ?-locale LOCALE? ?-timezone ZONE?\"" } if { [catch { expr {wide($clockval)} } result] } { |