GNU bug report logs -
#51235
resolve old FIXME in PCRE implementation to allow more than 1 expression
Previous Next
To reply to this bug, email your comments to 51235 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-grep <at> gnu.org
:
bug#51235
; Package
grep
.
(Sat, 16 Oct 2021 07:29:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Carlo Arenas <carenas <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
bug-grep <at> gnu.org
.
(Sat, 16 Oct 2021 07:29:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
With this patch, multiple expressions (from -e or -f) are now
acceptable with -P for easier side by side comparison with the other
supported engines.
Alternatively, multiple expressions could be compiled and run
sequentially for matching, but I suspect the added compilation time is
likely higher, and JIT might be able to run the alteration fast enough
for most cases.
Hopefully this tiny change is better than the status quo, though.
Carlo
[0001-pcre-allow-more-than-1-regular-expression.patch (application/octet-stream, attachment)]
Information forwarded
to
bug-grep <at> gnu.org
:
bug#51235
; Package
grep
.
(Sat, 16 Oct 2021 07:51:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 51235 <at> debbugs.gnu.org (full text, mbox):
On 10/16/21 12:00 AM, Carlo Arenas wrote:
> With this patch, multiple expressions (from -e or -f) are now
> acceptable with -P for easier side by side comparison with the other
> supported engines.
Surely this mishandles shell commands like this one:
grep -P '[
a]'
which should be an error, but with that patch would not be an error.
Information forwarded
to
bug-grep <at> gnu.org
:
bug#51235
; Package
grep
.
(Sat, 16 Oct 2021 16:16:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 51235 <at> debbugs.gnu.org (full text, mbox):
On Sat, Oct 16, 2021 at 12:50 AM Paul Eggert <eggert <at> cs.ucla.edu> wrote:
>
> On 10/16/21 12:00 AM, Carlo Arenas wrote:
> > With this patch, multiple expressions (from -e or -f) are now
> > acceptable with -P for easier side by side comparison with the other
> > supported engines.
>
> Surely this mishandles shell commands like this one:
>
> grep -P '[
> a]'
>
> which should be an error, but with that patch would not be an error.
of course, but ironically without the patch, the error isn't correct either:
$ grep -P '[
> a]'
grep: the -P option only supports a single pattern
I would say that for a 4 line patch with negative byte count, it is
worth the trade.
But if you feel so strongly against it, doing the one that compiles
every line independently and that will catch that problem wouldn't be
that difficult, but I would rather do it as a follow up, and is
definitely going to be bigger.
Carlo
Information forwarded
to
bug-grep <at> gnu.org
:
bug#51235
; Package
grep
.
(Sat, 16 Oct 2021 16:47:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 51235 <at> debbugs.gnu.org (full text, mbox):
On 10/16/21 1:58 AM, Carlo Arenas wrote:
> without the patch, the error isn't correct either:
>
> $ grep -P '[
>> a]'
> grep: the -P option only supports a single pattern
I don't offhand see what's wrong with the diagnostic, as the PATTERNS
operand is documented to be one that "contains one or more patterns
separated by newlines".
> doing the one that compiles
> every line independently and that will catch that problem wouldn't be
> that difficult, but I would rather do it as a follow up, and is
> definitely going to be bigger.
Yes, that sounds better. Please keep the followup in this thread. Also,
I hope you'd be willing to assign copyright to the FSF as I assume these
changes will be nontrivial. I will send you paperwork info about that
via separate mail offlist.
Added tag(s) moreinfo.
Request was from
Paul Eggert <eggert <at> cs.ucla.edu>
to
control <at> debbugs.gnu.org
.
(Wed, 24 Nov 2021 02:45:01 GMT)
Full text and
rfc822 format available.
This bug report was last modified 3 years and 204 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.