diff options
author | Kevin B Kenny <kennykb@acm.org> | 2005-11-04 20:13:30 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2005-11-04 20:13:30 (GMT) |
commit | b2b62c13d10f85c35ad6d949c85003bded986b53 (patch) | |
tree | 850001e00cbccb1bffa0dde4ad0c78249d29896b /generic/tclGetDate.y | |
parent | 60960f3a10929968b97a427fd1ce508fbf1b2eea (diff) | |
download | tcl-b2b62c13d10f85c35ad6d949c85003bded986b53.zip tcl-b2b62c13d10f85c35ad6d949c85003bded986b53.tar.gz tcl-b2b62c13d10f85c35ad6d949c85003bded986b53.tar.bz2 |
Bug 1298737
Diffstat (limited to 'generic/tclGetDate.y')
-rw-r--r-- | generic/tclGetDate.y | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclGetDate.y b/generic/tclGetDate.y index 6f67e50..8ce6df3 100644 --- a/generic/tclGetDate.y +++ b/generic/tclGetDate.y @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclGetDate.y,v 1.28 2005/11/02 14:51:04 dkf Exp $ + * RCS: @(#) $Id: tclGetDate.y,v 1.29 2005/11/04 20:13:30 kennykb Exp $ */ %{ @@ -579,6 +579,9 @@ static TABLE TimezoneTable[] = { { "jt", tZONE, -HOUR(15/2) }, /* Java (3pm in Cronusland!) */ { "cct", tZONE, -HOUR( 8) }, /* China Coast, USSR Zone 7 */ { "jst", tZONE, -HOUR( 9) }, /* Japan Standard, USSR Zone 8 */ + { "jdt", tDAYZONE, -HOUR( 9) }, /* Japan Daylight */ + { "kst", tZONE, -HOUR( 9) }, /* Korea Standard */ + { "kdt", tDAYZONE, -HOUR( 9) }, /* Korea Daylight */ { "cast", tZONE, -HOUR(19/2) }, /* Central Australian Standard */ { "cadt", tDAYZONE, -HOUR(19/2) }, /* Central Australian Daylight */ { "east", tZONE, -HOUR(10) }, /* Eastern Australian Standard */ |