emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#16927: closed ([PATCH] grep: avoid to add same cha


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#16927: closed ([PATCH] grep: avoid to add same character to a bracket expression)
Date: Mon, 03 Mar 2014 15:32:01 +0000

Your message dated Mon, 03 Mar 2014 07:31:19 -0800
with message-id <address@hidden>
and subject line Re: bug#16927: [PATCH] grep: avoid to add same character to a 
bracket expression
has caused the debbugs.gnu.org bug report #16927,
regarding [PATCH] grep: avoid to add same character to a bracket expression
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
16927: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16927
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] grep: avoid to add same character to a bracket expression Date: Mon, 03 Mar 2014 22:13:00 +0900
Package: grep
Tags: patch

The patch avoids to add same character to a bracket expression in
trivial_case_ignore.  That may be able to generate smaller tokens in
multibyte locales.

For example, FULLWIDTH LATIN CAPITAL LETTER A (ef bd 81) will transform
as below, because multibyte characters in CSET is extended to OR
expressions in DFA.

Before the patch:

[AAa] (where each charactecter is fullwidth)
EF BD CAT 81 CAT EF BD CAT 81 CAT OR EF BC CAT A1 CAT OR

After the patch:

[Aa] (where each charactecter is fullwidth)
EF BD CAT 81 CAT EF BC CAT A1 CAT OR

Attachment: patch.txt
Description: Binary data


--- End Message ---
--- Begin Message --- Subject: Re: bug#16927: [PATCH] grep: avoid to add same character to a bracket expression Date: Mon, 03 Mar 2014 07:31:19 -0800 User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0
Thanks, I installed that.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]