diff options
Diffstat (limited to 'library')
-rw-r--r-- | library/clock.tcl | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/library/clock.tcl b/library/clock.tcl index da4309c..d678a7c 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.40 2007/03/09 01:09:00 kennykb Exp $ +# RCS: @(#) $Id: clock.tcl,v 1.41 2007/04/15 18:59:34 kennykb Exp $ # #---------------------------------------------------------------------- @@ -689,16 +689,16 @@ proc ::tcl::clock::format { args } { foreach { flag value } [lreplace $args 0 0] { set saw($flag) {} switch -exact -- $flag { - -format { + -f - -fo - -for - -form - -forma - -format { set format $value } - -gmt { + -g - -gm - -gmt { set gmt $value } - -locale { + -l - -lo - -loc - -loca - -local - -locale { set locale $value } - -timezone { + -t - -ti - -tim - -time - -timez - -timezo - -timezon - -timezone { set timezone $value } default { @@ -1282,19 +1282,19 @@ proc ::tcl::clock::scan { args } { foreach { flag value } [lreplace $args 0 0] { set saw($flag) {} switch -exact -- $flag { - -base { + -b - -ba - -bas - -base { set base $value } - -format { + -f - -fo - -for - -form - -forma - -format { set format $value } - -gmt { + -g - -gm - -gmt { set gmt $value } - -locale { + -l - -lo - -loc - -loca - -local - -locale { set locale $value } - -timezone { + -t - -ti - -tim - -time - -timez - -timezo - -timezon - -timezone { set timezone $value } default { @@ -4404,12 +4404,13 @@ proc ::tcl::clock::add { clockval args } { switch -exact -- $a { - -gmt { + -g - -gm - -gmt { set gmt $b } - -locale { + -l - -lo - -loc - -loca - -local - -locale { set locale $b } + -t - -ti - -tim - -time - -timez - -timezo - -timezon - -timezone { set timezone $b } |