diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2013-06-27 12:35:47 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2013-06-27 12:35:47 (GMT) |
| commit | d531caa6ae6c2a92a9c38fce0118352f913f3c8c (patch) | |
| tree | dd0f31f1179bca6a2d1f0fd551e69bd279fdd9d2 | |
| parent | c86610a2c0fa7630673911d21108372dc9d4cfcc (diff) | |
| parent | d534d43b4ab1c8a037b4b2e368a16a471b026c03 (diff) | |
| download | tcl-d531caa6ae6c2a92a9c38fce0118352f913f3c8c.zip tcl-d531caa6ae6c2a92a9c38fce0118352f913f3c8c.tar.gz tcl-d531caa6ae6c2a92a9c38fce0118352f913f3c8c.tar.bz2 | |
Fix [34538ba43f]
| -rw-r--r-- | library/clock.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/clock.tcl b/library/clock.tcl index 0696c47..166c377 100644 --- a/library/clock.tcl +++ b/library/clock.tcl @@ -3861,7 +3861,7 @@ proc ::tcl::clock::ProcessPosixTimeZone { z } { # Put DST in effect in all years from 1916 to 2099. - for { set y 1916 } { $y < 2099 } { incr y } { + for { set y 1916 } { $y < 2100 } { incr y } { set startTime [DeterminePosixDSTTime $z start $y] incr startTime [expr { - wide($stdOffset) }] set endTime [DeterminePosixDSTTime $z end $y] |
