Re: Copyright on wildmatch.c

2015-02-24 Thread Anthony Ramine
I agree to relicense my contributions on wildmatch.c under the Apache license. Le 24 févr. 2015 à 13:54, Guilherme a écrit : > This is CC to Anthony Ramine. > > On Tue, Feb 24, 2015 at 1:34 PM, Guilherme wrote: >> This is just an email to all the people i have written in p

Re: [PATCH v5] wildmatch: properly fold case everywhere

2013-06-02 Thread Anthony Ramine
Hello Junio, Replied inline. Regards, -- Anthony Ramine Le 2 juin 2013 à 23:53, Junio C Hamano a écrit : > Anthony Ramine writes: > >> ase folding is not done correctly when matching against the [:upper:] >> character class and uppercased character ranges (e.g. A-Z). &

[PATCH v5] wildmatch: properly fold case everywhere

2013-05-30 Thread Anthony Ramine
modified (in a case-insensitive context, [A-_] is not equivalent to [a-_]). Signed-off-by: Anthony Ramine Reviewed-by: Duy Nguyen --- t/t3070-wildmatch.sh | 55 ++-- wildmatch.c | 7 +++ 2 files changed, 56 insertions(+), 6 deletions

Re: [PATCH] wildmatch: properly fold case everywhere

2013-05-30 Thread Anthony Ramine
Yes indeed. Will amend. Should I add your name in Reviewed-by as well? -- Anthony Ramine Le 30 mai 2013 à 11:07, Eric Sunshine a écrit : > On Thu, May 30, 2013 at 4:45 AM, Anthony Ramine wrote: >> Case folding is not done correctly when matching against the [:upper:] >> char

[PATCH] wildmatch: properly fold case everywhere

2013-05-30 Thread Anthony Ramine
modified (in a case-insensitive context, [A-_] is not equivalent to [a-_]). Signed-off-by: Anthony Ramine --- t/t3070-wildmatch.sh | 55 ++-- wildmatch.c | 7 +++ 2 files changed, 56 insertions(+), 6 deletions(-) I added four tests for

Re: [PATCH v3] wildmatch: properly fold case everywhere

2013-05-29 Thread Anthony Ramine
Replied inline. -- Anthony Ramine Le 29 mai 2013 à 15:52, Duy Nguyen a écrit : > On Wed, May 29, 2013 at 8:37 PM, Anthony Ramine wrote: >> Le 29 mai 2013 à 15:22, Duy Nguyen a écrit : >> >>> On Tue, May 28, 2013 at 8:58 PM, Anthony Ramine wrote: >>>> Cas

Re: [PATCH v3] wildmatch: properly fold case everywhere

2013-05-29 Thread Anthony Ramine
Replied inline. Regards, -- Anthony Ramine Le 29 mai 2013 à 15:22, Duy Nguyen a écrit : > On Tue, May 28, 2013 at 8:58 PM, Anthony Ramine wrote: >> Case folding is not done correctly when matching against the [:upper:] >> character class and uppercased character r

[PATCH v3] wildmatch: properly fold case everywhere

2013-05-28 Thread Anthony Ramine
preemptively lowercased to handle the base case fast. That optimization is kept and ISLOWER() is used in the [:upper:] case when case folding is requested, while matching against a character range is retried with toupper() if the character was lowercase. Signed-off-by: Anthony Ramine --- t/t3070

[PATCH v2] wildmatch: properly fold case everywhere

2013-05-28 Thread Anthony Ramine
preemptively lowercased to handle the base case fast. That optimization is kept and ISLOWER() is used in the [:upper:] case when case folding is requested, while matching against a character range is retried with toupper() if the character was lowercase. Signed-off-by: Anthony Ramine --- t/t3070

Re: [PATCH] wildmatch: properly fold case everywhere

2013-05-28 Thread Anthony Ramine
You're right, I will amend my patch. How do I make git-send-email reply to that thread? -- Anthony Ramine Le 28 mai 2013 à 14:53, Duy Nguyen a écrit : > On Tue, May 28, 2013 at 7:32 PM, Anthony Ramine wrote: >> @@ -196,6 +196,11 @@ static int dowild(const uchar *p, con

[PATCH] wildmatch: properly fold case everywhere

2013-05-28 Thread Anthony Ramine
preemptively lowercased to handle the base case fast. That optimization is kept and ISLOWER() is used in the [:upper:] case when case folding is requested, while matching against a character range is retried with toupper() if the character was lowercase. Signed-off-by: Anthony Ramine --- t/t3070