Re: [Grep-devel] patches for removing DFA_CASE_FOLD

2016-12-13 Thread arnold
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

Re: [Grep-devel] patches for removing DFA_CASE_FOLD

2016-12-13 Thread Jim Meyering
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,

Re: [Grep-devel] patches for removing DFA_CASE_FOLD

2016-12-13 Thread Paul Eggert
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