Jim Meyering wrote:

> Paolo Bonzini wrote:
>> On 09/15/2011 12:27 PM, Jim Meyering wrote:
>>> --- a/src/dfa.c
>>> +++ b/src/dfa.c
>>> @@ -1025,34 +1025,33 @@ parse_bracket_exp (void)
>>>
>>>         colon_warning_state |= (c == ':') ? 2 : 4;
>>>
>>> -#if MBS_SUPPORT
>>> -      if (MB_CUR_MAX>  1)
>>> +      if (!MBS_SUPPORT || MB_CUR_MAX<= 1)
>>
>> Can test == 1.
>
> The answer is obvious, so perhaps I'm misunderstanding.
> That expression will be 1 e.g., whenever MBS_SUPPORT is 0

Perhaps you're really asking whether MB_CUR_MAX can be smaller than 1 ?
That bothered me, too, so I made it consistent with the others, using "=="
rather than "<=".

Reply via email to