summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2013-06-27 12:35:47 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2013-06-27 12:35:47 (GMT)
commitd531caa6ae6c2a92a9c38fce0118352f913f3c8c (patch)
treedd0f31f1179bca6a2d1f0fd551e69bd279fdd9d2
parentc86610a2c0fa7630673911d21108372dc9d4cfcc (diff)
parentd534d43b4ab1c8a037b4b2e368a16a471b026c03 (diff)
downloadtcl-d531caa6ae6c2a92a9c38fce0118352f913f3c8c.zip
tcl-d531caa6ae6c2a92a9c38fce0118352f913f3c8c.tar.gz
tcl-d531caa6ae6c2a92a9c38fce0118352f913f3c8c.tar.bz2
Fix [34538ba43f]
-rw-r--r--library/clock.tcl2
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]