ICU-96 When checking for TRUE in the macro don't use '='

X-SVN-Rev: 4023
This commit is contained in:
George Rhoten 2001-03-12 19:09:23 +00:00
parent 13ee1e9a8d
commit d6777e1cad

View File

@ -271,8 +271,8 @@ struct incrementalContext {
else { \
/* weiv tentatively */\
/*if ((data).pos == (data).string || (data).pos == (data).writableBuffer) {*/\
if (((data).pos <= (data).string && (data).isUsingWritable == FALSE) || \
((data).pos <= (data).writableBuffer && (data).isUsingWritable = TRUE)) {\
if (((data).pos <= (data).string && !(data).isUsingWritable) || \
((data).pos <= (data).writableBuffer && (data).isUsingWritable)) { \
(order) = UCOL_NO_MORE_CES; \
} \
else { \