summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-06-27 12:34:49 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-06-27 12:34:49 (GMT)
commit4afe34c9b3d9bc56352470e7f7dc61304bb71201 (patch)
tree685251da0d97d5487e3bf77d9a76a2b9aae3d6a1 /library
parentc515a5da53a5c61527c77bfd7c062c02b66af1e2 (diff)
downloadtcl-4afe34c9b3d9bc56352470e7f7dc61304bb71201.zip
tcl-4afe34c9b3d9bc56352470e7f7dc61304bb71201.tar.gz
tcl-4afe34c9b3d9bc56352470e7f7dc61304bb71201.tar.bz2
Fix [34538ba43f]
Diffstat (limited to 'library')
-rw-r--r--library/clock.tcl2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/clock.tcl b/library/clock.tcl
index 32911b3..49aad23 100644
--- a/library/clock.tcl
+++ b/library/clock.tcl
@@ -3947,7 +3947,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]