ICU-2001 enum constant name U_a is even safer than _a

X-SVN-Rev: 10172
This commit is contained in:
Markus Scherer 2002-11-06 20:50:03 +00:00
parent 09ea6f21fa
commit ef8d48e498
2 changed files with 8 additions and 8 deletions

View file

@ -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 */

View file

@ -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,