freebsd-dev/gnu/usr.bin/grep
Andrey A. Chernov ea81c8d0ef After removing collation for [a-z] ranges in r302512, do it here too.
Instead of trying to expand whole range at regcomp() stage as we do,
GNU regex allocates separate ranges [start,end] set each character
is checked against, so collation is possible and turned on for ranges here.

When something like that will be implemented or our obsoleted regex code
will be replaced to something like TRE, and in case we decide to use
collation in [a-z] ranges, all changes related to r302512 can be backed out,
but now we need consistency.
2016-07-13 19:02:59 +00:00
..
tests
AUTHORS
ChangeLog
closeout.c
closeout.h
config.h gnugrep: Update the configuration. 2016-05-22 20:17:55 +00:00
COPYING
dfa.c After removing collation for [a-z] ranges in r302512, do it here too. 2016-07-13 19:02:59 +00:00
dfa.h
error.c
error.h
exclude.c
exclude.h
FREEBSD-upgrade
getpagesize.h
grep.1
grep.c Part of r245761 makes "grep -D skip" broken for pipes, i.e. 2013-08-08 11:53:47 +00:00
grep.h
grepmat.c
hard-locale.c
hard-locale.h
isdir.c
kwset.c
kwset.h
Makefile Add a ${CP} alias for copying files in the build. 2015-01-16 21:39:08 +00:00
Makefile.depend META MODE: Update dependencies with 'the-lot' and add missing directories. 2015-12-01 05:23:19 +00:00
NEWS
obstack.c
obstack.h
quotearg.c
quotearg.h
README
savedir.c Include "system.h" for isdir() prototype. 2015-11-04 05:38:08 +00:00
savedir.h
search.c grep: change some int types. 2013-05-20 03:15:25 +00:00
system.h
THANKS
xalloc.h
xmalloc.c
xstrtol.c
xstrtol.h
xstrtoumax.c

This is GNU grep, the "fastest grep in the west" (we hope).  All
bugs reported in previous releases have been fixed.  Many exciting new
bugs have probably been introduced in this revision.

GNU grep is provided "as is" with no warranty.  The exact terms
under which you may use and (re)distribute this program are detailed
in the GNU General Public License, in the file COPYING.

GNU grep is based on a fast lazy-state deterministic matcher (about
twice as fast as stock Unix egrep) hybridized with a Boyer-Moore-Gosper
search for a fixed string that eliminates impossible text from being
considered by the full regexp matcher without necessarily having to
look at every character.  The result is typically many times faster
than Unix grep or egrep.  (Regular expressions containing backreferencing
will run more slowly, however.)

See the files AUTHORS and THANKS for a list of authors and other contributors.

See the file INSTALL for compilation and installation instructions.

See the file NEWS for a description of major changes in this release.

See the file TODO for ideas on how you could help us improve grep.

Send bug reports to bug-gnu-utils@gnu.org.  Be sure to
include the word "grep" in your Subject: header field.