|
Last change
on this file was 2595, checked in by bird, 12 years ago |
|
gnu grep version 2.12 (grep-2.12.tar.xz, md5sum=8d2f0346d08b13c18afb81f0e8aa1e2f)
|
-
Property svn:eol-style
set to
native
|
|
File size:
462 bytes
|
| Line | |
|---|
| 1 | #include <config.h>
|
|---|
| 2 | #include "search.h"
|
|---|
| 3 |
|
|---|
| 4 | static void
|
|---|
| 5 | Ecompile (char const *pattern, size_t size)
|
|---|
| 6 | {
|
|---|
| 7 | GEAcompile (pattern, size, RE_SYNTAX_POSIX_EGREP | RE_NO_EMPTY_RANGES);
|
|---|
| 8 | }
|
|---|
| 9 |
|
|---|
| 10 | struct matcher const matchers[] = {
|
|---|
| 11 | { "egrep", Ecompile, EGexecute },
|
|---|
| 12 | { NULL, NULL, NULL },
|
|---|
| 13 | };
|
|---|
| 14 |
|
|---|
| 15 | const char before_options[] =
|
|---|
| 16 | N_("PATTERN is an extended regular expression (ERE).\n");
|
|---|
| 17 | const char after_options[] =
|
|---|
| 18 | N_("Invocation as 'egrep' is deprecated; use 'grep -E' instead.\n");
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.