From ef8d48e498713912012ca8ea4f9a360358a84d98 Mon Sep 17 00:00:00 2001 From: Markus Scherer Date: Wed, 6 Nov 2002 20:50:03 +0000 Subject: [PATCH] ICU-2001 enum constant name U_a is even safer than _a X-SVN-Rev: 10172 --- icu4c/source/common/uchar.c | 8 ++++---- icu4c/source/common/uprops.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/icu4c/source/common/uchar.c b/icu4c/source/common/uchar.c index c3fac538476..e9a957f9143 100644 --- a/icu4c/source/common/uchar.c +++ b/icu4c/source/common/uchar.c @@ -922,10 +922,10 @@ uchar_addPropertyStarts(USet *set) { USET_ADD_CP_AND_NEXT(set, 0x4e5d); /* add for u_digit() */ - uset_add(set, _a); - uset_add(set, _z+1); - uset_add(set, _A); - uset_add(set, _Z+1); + uset_add(set, U_a); + uset_add(set, U_z+1); + uset_add(set, U_A); + uset_add(set, U_Z+1); /* add for UCHAR_DEFAULT_IGNORABLE_CODE_POINT what was not added above */ uset_add(set, WJ); /* range WJ..NOMDIG */ diff --git a/icu4c/source/common/uprops.h b/icu4c/source/common/uprops.h index 1f5215424a6..8498bc971db 100644 --- a/icu4c/source/common/uprops.h +++ b/icu4c/source/common/uprops.h @@ -239,10 +239,10 @@ enum { LF =0x000a, FF =0x000c, CR =0x000d, - _A =0x0041, - _Z =0x005a, - _a =0x0061, - _z =0x007a, + U_A =0x0041, + U_Z =0x005a, + U_a =0x0061, + U_z =0x007a, DEL =0x007f, NL =0x0085, NBSP =0x00a0,