ICU-96 When checking for TRUE in the macro don't use '='
X-SVN-Rev: 4023
This commit is contained in:
parent
13ee1e9a8d
commit
d6777e1cad
@ -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 { \
|
||||
|
Loading…
Reference in New Issue
Block a user