Paolo Bonzini wrote:

> On 09/15/2011 12:28 PM, Jim Meyering wrote:
>> -#if MBS_SUPPORT
>>     d->mb_cur_max = MB_CUR_MAX;
>
> d->mb_cur_max = MBS_SUPPORT ? MB_CUR_MAX : 1

That's tempting, but not needed.
MB_CUR_MAX is already defined appropriately, so what's there is fine:

       d->mb_cur_max = MB_CUR_MAX;

>>     if (d->mb_cur_max>  1)
>>       {
>>         d->nmultibyte_prop = 1;
>> @@ -3417,7 +3417,6 @@ dfainit (struct dfa *d)
>>         d->mbcsets_alloc = 1;
>>         MALLOC(d->mbcsets, d->mbcsets_alloc);
>>       }
>> -#endif

Reply via email to