summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2005-11-04 20:15:08 (GMT)
committerKevin B Kenny <kennykb@acm.org>2005-11-04 20:15:08 (GMT)
commitd373e0fb8d1a0a7bd3cbc41a6a679265d66faa2e (patch)
tree8f10ab33e4108c7ae934958f6cd43aa11c106c18
parentc879b65ba4b320e45f03779fc598ed6404daa748 (diff)
downloadtcl-d373e0fb8d1a0a7bd3cbc41a6a679265d66faa2e.zip
tcl-d373e0fb8d1a0a7bd3cbc41a6a679265d66faa2e.tar.gz
tcl-d373e0fb8d1a0a7bd3cbc41a6a679265d66faa2e.tar.bz2
Bug 1298737
-rw-r--r--ChangeLog4
-rw-r--r--generic/tclDate.c5
-rw-r--r--generic/tclGetDate.y5
3 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 640d9fb..a370199 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,10 @@
2005-11-04 Kevin Kenny <kennykb@acm.org>
+ * generic/tclGetDate.y: Added abbreviations for the Korean
+ timezone.
+ * generic/tclDate.c: Regenerated.
+
* compat/strftime.c: Fixed a problem where the name of the
time zone was double-converted from system encoding to
UTF-8. Thanks to the anonymous submitter of [Bug 1317477]
diff --git a/generic/tclDate.c b/generic/tclDate.c
index 870988f..e6a8a90 100644
--- a/generic/tclDate.c
+++ b/generic/tclDate.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclDate.c,v 1.20.4.1 2005/03/15 16:29:53 kennykb Exp $
+ * RCS: @(#) $Id: tclDate.c,v 1.20.4.2 2005/11/04 20:15:09 kennykb Exp $
*/
#include "tclInt.h"
@@ -334,6 +334,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 */
diff --git a/generic/tclGetDate.y b/generic/tclGetDate.y
index 62a70c8..fdcfe88 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.18.4.1 2005/03/15 16:29:53 kennykb Exp $
+ * RCS: @(#) $Id: tclGetDate.y,v 1.18.4.2 2005/11/04 20:15:09 kennykb Exp $
*/
%{
@@ -553,6 +553,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 */