# HG changeset patch # User Kenichi Handa # Date 1239843867 0 # Node ID 02685d9367064dd6b32ccc3cc4cc8c3801abc184 # Parent 3123154d96e024e17f91430c9e5622d77467bb04 (charset_ksc5601): New variable. (Fdefine_charset_internal): Set charset_ksc5601. (init_charset_once): Initialize charset_ksc5601 to -1. diff -r 3123154d96e0 -r 02685d936706 src/charset.c --- a/src/charset.c Wed Apr 15 23:32:23 2009 +0000 +++ b/src/charset.c Thu Apr 16 01:04:27 2009 +0000 @@ -87,6 +87,7 @@ int charset_jisx0201_roman; int charset_jisx0208_1978; int charset_jisx0208; +int charset_ksc5601; /* Value of charset attribute `charset-iso-plane'. */ Lisp_Object Qgl, Qgr; @@ -1224,6 +1225,8 @@ charset_jisx0208_1978 = id; else if (ISO_CHARSET_TABLE (2, 0, 'B') == id) charset_jisx0208 = id; + else if (ISO_CHARSET_TABLE (2, 0, 'C') == id) + charset_ksc5601 = id; } if (charset.emacs_mule_id >= 0) @@ -2320,6 +2323,7 @@ charset_jisx0201_roman = -1; charset_jisx0208_1978 = -1; charset_jisx0208 = -1; + charset_ksc5601 = -1; for (i = 0; i < 128; i++) unibyte_to_multibyte_table[i] = i;