Paul Eggert wrote:
> On 12/13/2016 12:26 PM, Arnold Robbins wrote:
> > - dfa->syntax.case_fold = (dfaopts & DFA_CASE_FOLD) != 0;
> > + dfa->syntax.case_fold = (bits & RE_ICASE) != 0
>
> I'm afraid that didn't work, due to a missing semicolon. I fixed that
> up, fiddled with the commit messages
On Tue, Dec 13, 2016 at 2:51 PM, Paul Eggert wrote:
> On 12/13/2016 12:26 PM, Arnold Robbins wrote:
>>
>> - dfa->syntax.case_fold = (dfaopts & DFA_CASE_FOLD) != 0;
>> + dfa->syntax.case_fold = (bits & RE_ICASE) != 0
>
>
> I'm afraid that didn't work, due to a missing semicolon. I fixed that up,
On 12/13/2016 12:26 PM, Arnold Robbins wrote:
- dfa->syntax.case_fold = (dfaopts & DFA_CASE_FOLD) != 0;
+ dfa->syntax.case_fold = (bits & RE_ICASE) != 0
I'm afraid that didn't work, due to a missing semicolon. I fixed that
up, fiddled with the commit messages, updated grep submodules, and
i