glibc/localedata/locales
Ulrich Drepper 601d294296 Update.
2001-06-04  Bruno Haible  <haible@clisp.cons.org>

	* iconv/loop.c (UNICODE_TAG_HANDLER): New macro.
	* iconv/gconv_simple.c (__gconv_transform_internal_ascii): Invoke
	UNICODE_TAG_HANDLER.
	(__gconv_transform_internal_ucs2): Likewise.
	(__gconv_transform_internal_ucs2reverse): Likewise.
	* iconvdata/8bit-gap.c (BODY for TO_LOOP): Invoke UNICODE_TAG_HANDLER.
	* iconvdata/8bit-generic.c (BODY for TO_LOOP): Likewise.
	* iconvdata/ansi_x3.110.c (BODY for TO_LOOP): Likewise.
	* iconvdata/big5.c (BODY for TO_LOOP): Likewise.
	* iconvdata/big5hkscs.c (BODY for TO_LOOP): Likewise.
	* iconvdata/cp1255.c (BODY for TO_LOOP): Likewise.
	* iconvdata/cp1258.c (BODY for TO_LOOP): Likewise.
	* iconvdata/euc-cn.c (BODY for TO_LOOP): Likewise.
	* iconvdata/euc-jp.c (BODY for TO_LOOP): Likewise.
	* iconvdata/euc-kr.c (BODY for TO_LOOP): Likewise.
	* iconvdata/euc-tw.c (BODY for TO_LOOP): Likewise.
	* iconvdata/gbk.c (BODY for TO_LOOP): Likewise.
	* iconvdata/ibm930.c (BODY for TO_LOOP): Likewise.
	* iconvdata/ibm932.c (BODY for TO_LOOP): Likewise.
	* iconvdata/ibm933.c (BODY for TO_LOOP): Likewise.
	* iconvdata/ibm935.c (BODY for TO_LOOP): Likewise.
	* iconvdata/ibm937.c (BODY for TO_LOOP): Likewise.
	* iconvdata/ibm939.c (BODY for TO_LOOP): Likewise.
	* iconvdata/ibm943.c (BODY for TO_LOOP): Likewise.
	* iconvdata/iso646.c (BODY for TO_LOOP): Likewise.
	* iconvdata/iso8859-1.c (BODY for TO_LOOP): Likewise.
	* iconvdata/iso_6937.c (BODY for TO_LOOP): Likewise.
	* iconvdata/iso_6937-2.c (BODY for TO_LOOP): Likewise.
	* iconvdata/iso-2022-cn.c (BODY for TO_LOOP): Likewise.
	* iconvdata/iso-2022-cn-ext.c (BODY for TO_LOOP): Likewise.
	* iconvdata/iso-2022-kr.c (BODY for TO_LOOP): Likewise.
	* iconvdata/johab.c (BODY for TO_LOOP): Likewise.
	* iconvdata/sjis.c (BODY for TO_LOOP): Likewise.
	* iconvdata/t.61.c (BODY for TO_LOOP): Likewise.
	* iconvdata/uhc.c (BODY for TO_LOOP): Likewise.
	* iconvdata/unicode.c (BODY for TO_LOOP): Likewise.
	* iconvdata/iso-2022-jp.c (TAG_none, TAG_language, TAG_language_j,
	TAG_language_ja, TAG_language_k, TAG_language_ko, TAG_language_z,
	TAG_language_zh, CURRENT_TAG_MASK): New enum values.
	(EMIT_SHIFT_TO_INIT): Don't emit an escape sequence if ASCII_set
	is already selected but set2 or tag are set.
	(conversion): New enum type.
	(cvlist_t): New type.
	(CVLIST, CVLIST_FIRST, CVLIST_REST): New macros.
	(conversion_lists): New array.
	(BODY for TO_LOOP): Keep track of Unicode 3.1 language tag. If "ja",
	prefer conversion to Japanese character sets. If "zh", prefer
	conversion to GB2312. If "ko", prefer conversion to KSC5601. Small
	optimizations.
	(INIT_PARAMS): Add tag.
	(UPDATE_PARAMS): Add tag.

2001-06-04  Bruno Haible  <haible@clisp.cons.org>

	* locale/programs/locfile.c (write_locale_data): Before creat(),
	unlink the file, to avoid crashing the processes that mmap it.  Change
	a double slash to a single slash.  Free fname in case of error return.

2001-06-02  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/i386/fpu/s_frexpl.S (__frexpl): Mostly revert 2000-12-03
	changes, do the special handling for denormal numbers, not for
	normalized numbers (patch by <trevin@xmission.com>).

	* math/test-misc.c (main): Test frexpl with denormal arguments.

2001-06-04  Jakub Jelinek  <jakub@redhat.com>

	* math/libm-test.inc (llround_test): Add two new llround tests.
	* sysdeps/ieee754/ldbl-96/s_llroundl.c (__llroundl): Don't allow
	overflow when rounding away from zero.

2001-06-04  Jakub Jelinek  <jakub@redhat.com>

	* math/Makefile (libm-calls): Add e_log2, w_log2, remove s_log2.
	* math/math_private.h (__ieee754_log2, __ieee754_log2f,
	__ieee754_log2l): New prototypes.
	* sysdeps/generic/w_log2.c: New file.
	* sysdeps/generic/w_log2f.c: New file.
	* sysdeps/generic/w_log2l.c: New file.
	* sysdeps/generic/s_log2l.c: Move...
	* sysdeps/generic/e_log2l.c: ...to here. Rename to __ieee754_log2l.
	* sysdeps/ieee754/k_standard.c (__kernel_standard): Handle log2(0)
	and log2(x < 0).
	* sysdeps/i386/fpu/s_log2.S: Move...
	* sysdeps/i386/fpu/e_log2.S: ...to here. Rename to __ieee754_log2.
	* sysdeps/i386/fpu/s_log2f.S: Move...
	* sysdeps/i386/fpu/e_log2f.S: ...to here. Rename to __ieee754_log2f.
	* sysdeps/i386/fpu/s_log2l.S: Move...
	* sysdeps/i386/fpu/e_log2l.S: ...to here. Rename to __ieee754_log2l.
	* sysdeps/m68k/fpu/s_log2.S: Move...
	* sysdeps/m68k/fpu/e_log2.S: ...to here. Rename to __ieee754_log2.
	* sysdeps/m68k/fpu/s_log2f.S: Move...
	* sysdeps/m68k/fpu/e_log2f.S: ...to here. Rename to __ieee754_log2f.
	* sysdeps/m68k/fpu/s_log2l.S: Move...
	* sysdeps/m68k/fpu/e_log2l.S: ...to here. Rename to __ieee754_log2l.
	* sysdeps/ieee754/dbl-64/s_log2.c: Move...
	* sysdeps/ieee754/dbl-64/e_log2.c: ...to here. Rename to
	__ieee754_log2.
	* sysdeps/ieee754/flt-32/s_log2f.c: Move...
	* sysdeps/ieee754/flt-32/e_log2f.c: ...to here. Rename to
	__ieee754_log2f.

2001-06-04  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/generic/w_exp2.c (u_threshold): Lower threshold so that
	even arguments which result in denormalized exp2 are accepted.
	(__exp2): Arguments equal to u_threshold already result into
	underflow.
	* sysdeps/generic/w_exp2f.c (u_threshold, __exp2f): Likewise.
	* sysdeps/generic/w_exp2l.c (u_threshold, __exp2l): Likewise.
	* sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Lomark was too
	low, with corrected lowmark use greaterequal, not greater.
	* sysdeps/ieee754/flt-32/e_exp2f.c (__ieee754_exp2f): Likewise.

2001-06-04  Jakub Jelinek  <jakub@redhat.com>

	* math/libm-test.inc (ilogb_test): Test that ilogb(+-Inf) == INT_MAX.
	* sysdeps/i386/fpu/s_ilogb.S (__ilogb): Return INT_MAX for +-Inf.
	* sysdeps/i386/fpu/s_ilogbf.S (__ilogbf): Likewise.
	* sysdeps/i386/fpu/s_ilogbl.S (__ilogbl): Likewise.
	* sysdeps/ieee754/dbl-64/s_ilogb.c (__ilogb): Likewise.
	* sysdeps/ieee754/flt-32/s_ilogbf.c (__ilogbf): Likewise.
	* sysdeps/ieee754/ldbl-128/s_ilogbl.c (__ilogbl): Likewise.
	* sysdeps/ieee754/ldbl-96/s_ilogbl.c (__ilogbl): Likewise.

2001-06-04  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/generic/w_coshl.c (__coshl): Test if finite argument
	gave non-finite result instead of using constant in generic
	version.
	* sysdeps/generic/w_coshf.c (__coshf): Likewise.
	* sysdeps/generic/w_cosh.c (__cosh): Likewise.
	* sysdeps/generic/w_exp10.c (o_threshold, u_threshold): Remove.
	(__exp10): Test if finite argument gave non-finite result.
	* sysdeps/generic/w_exp10f.c (o_threshold, u_threshold, __exp10f):
	Likewise.
	* sysdeps/generic/w_exp10l.c (o_threshold, u_threshold, __exp10l):
	Likewise.
2001-06-04  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/ieee754/ldbl-96/e_coshl.c (__ieee754_coshl): Fix
	overflow threshold constant (log(LDBL_MAX)+M_LN2l).

2001-05-29  Bruno Haible  <haible@clisp.cons.org>

	* locale/programs/ld-ctype.c (idx_table): New struct type.
	(idx_table_init, idx_table_get, idx_table_add): New functions.
	(MAX_CHARNAMES_IDX): Remove macro.
	(locale_ctype_t): Change type of charnames_idx field.
	(ctype_startup): Change initialization of charnames_idx field.
	(find_idx): Use idx_table_get and idx_table_add for speed.

	* locale/programs/charmap.c (charmap_new_char): Fix ucs4 value
	computation of characters in a range.

2001-05-29  Bruno Haible  <haible@clisp.cons.org>

	* iconvdata/gb18030.c (__fourbyte_to_ucs1): Add mappings for <U03F4>,
	<U03F5>.
	(__ucs_to_gb18030_tab1): Likewise.
	(BODY for FROM_LOOP): Add mapping for <U00010000>..<U0010FFFF>.
	(BODY for TO_LOOP): Likewise.
	* iconvdata/tst-table-charmap.sh: Update for charmaps containing
	<U00xxxxxx> syntax.
	* iconvdata/tst-table-from.c (bmp_only): New variable.
	(utf8_decode): If bmp_only, don't return characters outside Unicode
	plane 0.
	(main): When testing UTF-8 or GB18030, set bmp_only to 1. Don't print
	a conversion line if utf8_decode returns NULL.
	* iconvdata/tst-table-to.c (main): When testing encodings other than
	UTF-8 and GB18030, loop upto U+30000 instead of U+10000. Use UTF-8
	instead of UCS-2 as input.
	* iconvdata/tst-table.sh: For GB18030, use only the part < 0x10000
	of the charmap.

2001-05-29  Bruno Haible  <haible@clisp.cons.org>

	* iconvdata/cns11643l1.c: Update to Unicode 3.1.
	(__cns11643l1_to_ucs4_tab): Regenerated.
	(__cns11643l1_from_ucs4_tab12): Regenerated.
	* iconvdata/cns11643.c: Update to Unicode 3.1.
	(__cns11643l14_to_ucs4_tab): Remove array.
	(__cns11643l3_to_ucs4_tab, __cns11643l4_to_ucs4_tab,
	__cns11643l5_to_ucs4_tab, __cns11643l6_to_ucs4_tab,
	__cns11643l7_to_ucs4_tab, __cns11643l15_to_ucs4_tab): New arrays.
	(__cns11643_from_ucs4p0_tab): Renamed from __cns11643_from_ucs4_tab.
	(__cns11643_from_ucs4p2_tab): New array.
	* iconvdata/cns11643.h (__cns11643l14_to_ucs4_tab): Remove declaration.
	(__cns11643l3_to_ucs4_tab, __cns11643l4_to_ucs4_tab,
	__cns11643l5_to_ucs4_tab, __cns11643l6_to_ucs4_tab,
	__cns11643l7_to_ucs4_tab, __cns11643l15_to_ucs4_tab): New declarations.
	(cns11643_to_ucs4): Treat planes 3, 4, 5, 6, 7, 15 instead of 14.
	(__cns11643_from_ucs4_tab): Remove declaration.
	(__cns11643_from_ucs4p0_tab, __cns11643_from_ucs4p2_tab): New
	declarations.
	(ucs4_to_cns11643): Update for new arrays. Treat U+3400..U+4DFF and
	U+20000..U+2A6D6.
	* iconvdata/cns11643l2.h (__cns11643_from_ucs4_tab): Remove
	declaration.
	(__cns11643_from_ucs4p0_tab): New declaration.
	(ucs4_to_cns11643l2): Update for new arrays.
	* iconvdata/iso-2022-cn-ext.c (BODY for FROM_LOOP): Handle planes
	3 to 7.
	(BODY for TO_LOOP): Handle planes 3 to 7, instead of plane 14.
	* iconvdata/EUC-TW.irreversible: New file.
	* iconvdata/tst-table.sh: Use it.
	* iconvdata/Makefile (distribute): Add CP1255.irreversible,
	CP1258.irreversible, EUC-TW.irreversible.

2001-05-29  Bruno Haible  <haible@clisp.cons.org>

	* locale/C-translit.h.in: Add transliterations for new Unicode 3.1
	mathematical symbols.
2001-06-06 12:55:46 +00:00
..
af_ZA Update. 2000-10-26 23:41:17 +00:00
ar_AE Update. 2000-10-26 23:41:17 +00:00
ar_BH Update. 2000-10-26 23:41:17 +00:00
ar_DZ Update. 2000-10-26 23:41:17 +00:00
ar_EG Update. 2000-10-26 23:41:17 +00:00
ar_IN Locale files from IBM. 2001-02-07 13:33:14 +00:00
ar_IQ Update. 2000-10-26 23:41:17 +00:00
ar_JO Update. 2000-10-26 23:41:17 +00:00
ar_KW Update. 2000-10-26 23:41:17 +00:00
ar_LB Update. 2000-10-26 23:41:17 +00:00
ar_LY Update. 2000-10-26 23:41:17 +00:00
ar_MA Update. 2000-10-26 23:41:17 +00:00
ar_OM Update. 2000-10-26 23:41:17 +00:00
ar_QA Update. 2000-10-26 23:41:17 +00:00
ar_SA Use Unicode aware LC_CTYPE information from "i18n". 2000-10-27 19:31:45 +00:00
ar_SD Update. 2000-10-26 23:41:17 +00:00
ar_SY Update. 2000-10-26 23:41:17 +00:00
ar_TN Update. 2000-10-26 23:41:17 +00:00
ar_YE Update. 2000-10-26 23:41:17 +00:00
be_BY Update. 2001-04-18 14:45:36 +00:00
bg_BG Use Unicode aware LC_CTYPE information from "i18n". 2000-10-27 19:31:45 +00:00
bn_IN Locale files from IBM. 2001-02-07 13:33:14 +00:00
ca_ES Update. 2000-10-26 23:41:17 +00:00
ca_ES@euro Update. 2000-08-23 04:04:02 +00:00
cs_CZ Update. 2001-01-24 22:19:16 +00:00
da_DK Update. 2000-10-31 04:38:55 +00:00
de_AT Update. 2000-10-31 04:38:55 +00:00
de_AT@euro Update. 2000-10-31 04:38:55 +00:00
de_BE Update. 2000-10-31 04:38:55 +00:00
de_BE@euro Update. 2000-10-31 04:38:55 +00:00
de_CH Update. 2000-10-31 04:38:55 +00:00
de_DE Update. 2000-10-31 04:38:55 +00:00
de_DE@euro Update. 2000-10-31 04:38:55 +00:00
de_LU Update. 2000-10-31 04:38:55 +00:00
de_LU@euro Update. 2000-10-31 04:38:55 +00:00
el_GR Update. 2001-01-24 22:19:16 +00:00
el_GR@euro Locale files from IBM. 2001-02-07 13:33:14 +00:00
en_AU Update. 2000-10-26 23:41:17 +00:00
en_BW Regenerated: autoconf configure.in 2000-07-06 23:33:20 +00:00
en_CA Update. 2000-10-26 23:41:17 +00:00
en_DK Update. 2000-10-26 23:41:17 +00:00
en_GB Update. 2000-10-26 23:41:17 +00:00
en_HK Update. 2001-02-09 17:13:50 +00:00
en_IE Update. 2000-10-26 23:41:17 +00:00
en_IE@euro Update charset comment. 2000-08-21 17:07:41 +00:00
en_IN * locales/en_IN: Add newline at end of file. 2001-02-09 18:56:06 +00:00
en_NZ Update. 2000-10-26 23:41:17 +00:00
en_PH Locale files from IBM. 2001-02-07 13:33:14 +00:00
en_SG Locale files from IBM. 2001-02-07 13:33:14 +00:00
en_US Update. 2000-10-26 23:41:17 +00:00
en_ZA Update. 2000-10-26 23:41:17 +00:00
en_ZW Regenerated: autoconf configure.in 2000-07-06 23:33:20 +00:00
es_AR Update. 2000-10-26 23:41:17 +00:00
es_BO Update. 2000-10-26 23:41:17 +00:00
es_CL Update. 2000-10-26 23:41:17 +00:00
es_CO Update. 2000-10-26 23:41:17 +00:00
es_CR Update. 2000-10-26 23:41:17 +00:00
es_DO Update. 2000-10-26 23:41:17 +00:00
es_EC Update. 2000-10-26 23:41:17 +00:00
es_ES Update. 2000-10-26 23:41:17 +00:00
es_ES@euro Update charset comment. 2000-08-21 17:07:41 +00:00
es_GT Update. 2000-10-26 23:41:17 +00:00
es_HN Update. 2000-10-26 23:41:17 +00:00
es_MX Update. 2000-10-26 23:41:17 +00:00
es_NI Update. 2000-10-26 23:41:17 +00:00
es_PA Update. 2000-10-26 23:41:17 +00:00
es_PE Update. 2000-10-26 23:41:17 +00:00
es_PR Update. 2000-10-26 23:41:17 +00:00
es_PY Update. 2000-10-26 23:41:17 +00:00
es_SV Update. 2000-10-26 23:41:17 +00:00
es_US Update. 2000-10-26 23:41:17 +00:00
es_UY Update. 2000-10-26 23:41:17 +00:00
es_VE Update. 2000-10-26 23:41:17 +00:00
et_EE Update. 2000-10-26 23:41:17 +00:00
eu_ES Update. 2000-10-26 23:41:17 +00:00
eu_ES@euro Update. 2000-08-21 18:36:45 +00:00
fa_IR Update. 2001-03-19 01:38:11 +00:00
fi_FI Update. 2001-01-31 06:36:39 +00:00
fi_FI@euro Update charset comment. 2000-08-21 17:07:41 +00:00
fo_FO Update. 2000-10-26 23:41:17 +00:00
fr_BE Update. 2000-10-31 04:38:55 +00:00
fr_BE@euro Update. 2000-10-31 04:38:55 +00:00
fr_CA Update. 2000-10-31 04:38:55 +00:00
fr_CH Update. 2000-10-31 04:38:55 +00:00
fr_FR Update. 2000-10-31 04:38:55 +00:00
fr_FR@euro Update. 2000-10-31 04:38:55 +00:00
fr_LU Update. 2000-10-31 04:38:55 +00:00
fr_LU@euro Update. 2000-10-31 04:38:55 +00:00
ga_IE Update. 2000-10-26 23:41:17 +00:00
ga_IE@euro Update. 2000-08-21 18:36:45 +00:00
gl_ES Update. 2000-10-26 23:41:17 +00:00
gl_ES@euro Update. 2000-08-21 18:36:45 +00:00
gv_GB Update. 2000-10-26 23:41:17 +00:00
he_IL Update. 2000-10-26 23:41:17 +00:00
hi_IN Update. 2000-10-26 23:41:17 +00:00
hr_HR Update. 2000-10-26 23:41:17 +00:00
hu_HU Update. 2000-10-26 23:41:17 +00:00
i18n Update. 2001-06-06 12:55:46 +00:00
id_ID Update. 2000-10-26 23:41:17 +00:00
is_IS Update. 2000-10-26 23:41:17 +00:00
iso14651_t1 Update. 2000-10-21 00:02:39 +00:00
it_CH Update. 2000-10-26 23:41:17 +00:00
it_IT Update. 2000-10-26 23:41:17 +00:00
it_IT@euro Update charset comment. 2000-08-21 17:07:41 +00:00
iw_IL Update. 2000-10-26 23:41:17 +00:00
ja_JP Update. 2000-10-31 04:38:55 +00:00
kl_GL Update. 2000-10-26 23:41:17 +00:00
ko_KR Changed LC_IDENTIFICATION territory field to Republic of Korea. Streamlined and extend(include all Hangul syllables) hangul and hanja class definition in LC_CTYPE and hangul portion of LC_COLLATE. Several changes in LC_TIME. Added tel_dom_fmt to LC_TELEPHONE. 2000-11-15 23:01:14 +00:00
kw_GB Update. 2000-10-26 23:41:17 +00:00
lt_LT Update. 2000-10-26 23:41:17 +00:00
lv_LV Update. 2000-10-26 23:41:17 +00:00
mk_MK Update. 2000-11-08 07:03:52 +00:00
mr_IN Update. 2000-10-26 23:41:17 +00:00
ms_MY * locales/ms_MY: Fix entries for Tue and Wednesday. 2001-05-14 08:05:09 +00:00
mt_MT Update. 2000-10-26 23:41:17 +00:00
nl_BE Update. 2000-10-26 23:41:17 +00:00
nl_BE@euro Update. 2000-08-21 18:36:45 +00:00
nl_NL Update. 2000-10-26 23:41:17 +00:00
nl_NL@euro Update charset comment. 2000-08-21 17:07:41 +00:00
nn_NO Update. 2000-10-26 23:41:17 +00:00
no_NO Update. 2000-10-26 23:41:17 +00:00
pl_PL Update. 2000-10-26 23:41:17 +00:00
POSIX Update. 2000-10-26 23:41:17 +00:00
pt_BR Update. 2000-10-26 23:41:17 +00:00
pt_PT Update. 2000-10-26 23:41:17 +00:00
pt_PT@euro Update charset comment. 2000-08-21 17:07:41 +00:00
ro_RO Update. 2001-05-27 07:05:32 +00:00
ru_RU Update. 2001-01-24 22:19:16 +00:00
ru_UA Update. 2001-04-18 14:45:36 +00:00
sk_SK Update. 2000-10-26 23:41:17 +00:00
sl_SI Update. 2000-10-26 23:41:17 +00:00
sq_AL Update. 2000-10-26 23:41:17 +00:00
sr_YU Update. 2000-10-26 23:41:17 +00:00
sr_YU@cyrillic Update. 2000-10-27 19:35:07 +00:00
sv_FI Update. 2001-01-31 06:36:39 +00:00
sv_FI@euro Update. 2000-08-21 18:36:45 +00:00
sv_SE Update. 2000-10-26 23:41:17 +00:00
ta_IN Locale files from IBM. 2001-02-07 13:33:14 +00:00
te_IN Locale files from IBM. 2001-02-07 13:33:14 +00:00
th_TH Update. 2001-02-19 18:55:39 +00:00
tr_TR Update. 2001-06-06 12:55:46 +00:00
translit_circle Update. 2000-10-31 04:38:55 +00:00
translit_cjk_compat Update. 2001-06-06 12:55:46 +00:00
translit_cjk_variants Update. 2000-10-31 04:38:55 +00:00
translit_combining Update. 2000-11-07 00:05:01 +00:00
translit_compat Update. 2001-06-06 12:55:46 +00:00
translit_font Update. 2001-06-06 12:55:46 +00:00
translit_fraction Update. 2000-11-07 00:05:01 +00:00
translit_hangul Update. 2000-10-31 04:38:55 +00:00
translit_narrow Update. 2000-10-31 04:38:55 +00:00
translit_neutral Update. 2000-11-08 21:20:06 +00:00
translit_small Update. 2000-10-31 04:38:55 +00:00
translit_wide Update. 2000-10-31 04:38:55 +00:00
uk_UA Update. 2001-04-18 14:45:36 +00:00
vi_VN Update. 2000-10-26 23:41:17 +00:00
zh_CN Extend LC_IDENTIFICATION entries a bit. 2001-02-06 18:35:07 +00:00
zh_HK Update. 2000-10-26 23:41:17 +00:00
zh_SG Locale files from IBM. 2001-02-07 13:33:14 +00:00
zh_TW Extend LC_IDENTIFICATION entries a bit. 2001-02-06 18:35:07 +00:00