| Commit message (Expand) | Author | Age | Files | Lines |
* | zlib functions take a gzFile not gzFile * (gzFile is already a pointer). |  millert | 2021-03-10 | 3 | -7/+7 |
* | Change line counter from int to unsigned long long to reduce overflow. |  martijn | 2020-07-23 | 2 | -8/+12 |
* | With -R and an implicit ".", don't prepend file paths with "./" |  jca | 2019-12-03 | 2 | -10/+14 |
* | Document implicit "." default file for -R |  kn | 2019-12-03 | 1 | -2/+7 |
* | With -R assume that "." was passed instead of printing a warning |  jca | 2019-12-02 | 1 | -3/+7 |
* | jmc is a stickler for consistency. |  tedu | 2019-10-07 | 1 | -3/+3 |
* | add --label to usage. thx jmc |  tedu | 2019-10-07 | 1 | -2/+2 |
* | two compat features to allow the zstdgrep script to work. |  tedu | 2019-10-07 | 4 | -6/+25 |
* | Delete documentation of --max-count, which is merely an alias of |  schwarze | 2019-07-18 | 2 | -6/+5 |
* | when combining -o and -b, print the byte offset of the pattern, not line. |  tedu | 2019-07-17 | 2 | -6/+9 |
* | convert fgetln to getline. this improves portability and sets a good |  tedu | 2019-01-31 | 2 | -11/+19 |
* | mmap support was broken in previous submitted diff from lauri tirkkonen |  deraadt | 2019-01-27 | 1 | -1/+2 |
* | rework grep_open to be more careful about directories. |  tedu | 2019-01-23 | 5 | -64/+53 |
* | - add max-count to SYNOPSIS |  jmc | 2017-12-10 | 2 | -19/+14 |
* | Add support for the non-standard grep -m extension. |  pirofti | 2017-12-09 | 4 | -12/+43 |
* | initialize regmatch_t always, fixes grep -o "" |  tedu | 2017-04-03 | 1 | -2/+2 |
* | when using -o, we may restart a match in the middle of the line. |  tedu | 2016-08-25 | 1 | -5/+14 |
* | Reverse search optimization makes no sense (and doesn't work) if |  otto | 2016-04-04 | 1 | -2/+2 |
* | for some time now mandoc has not required MLINKS to function |  jmc | 2016-03-30 | 1 | -7/+1 |
* | cast toupper's argument to unsigned char |  mmcc | 2015-12-22 | 1 | -2/+2 |
* | The loop index in grep_cmp() should be size_t to match the type of |  millert | 2015-12-22 | 1 | -11/+11 |
* | Use long long rather than off_t for line_no to ensure that it's always |  mmcc | 2015-12-14 | 2 | -4/+4 |
* | Represent line numbers with off_t rather than int. This prevents |  mmcc | 2015-12-07 | 2 | -4/+4 |
* | fix exit status on pledge(2) error, where it should be >1 |  gsoares | 2015-11-28 | 1 | -2/+2 |
* | Change all tame callers to namechange to pledge(2). |  deraadt | 2015-10-09 | 1 | -3/+3 |
* | grep only opens files read-only, reads via stdio or other methods, performs |  deraadt | 2015-10-03 | 1 | -1/+4 |
* | use strtonum to parse the number of lines of context. |  dlg | 2015-08-27 | 1 | -10/+9 |
* | Put fts_close() where missing. |  uebayasi | 2015-06-25 | 1 | -2/+2 |
* | Add warning when user specifies -R but no files, like GNU grep. |  millert | 2015-04-30 | 1 | -1/+3 |
* | Don't include limits.h or sys/limits.h since grep.h already does it |  millert | 2015-03-16 | 2 | -4/+2 |
* | Include limits.h, not sys/limits.h and include stdint.h for SIZE_MAX. |  millert | 2015-03-16 | 1 | -2/+3 |
* | SIZE_MAX is standard, we should be using it in preference to the |  millert | 2015-02-06 | 1 | -2/+2 |
* | Replace <sys/param.h> with <limits.h> and other less dirty headers where |  deraadt | 2015-01-16 | 3 | -9/+5 |
* | An article on medium.com highlighted that grep |  daniel | 2015-01-13 | 1 | -3/+3 |
* | 1. They're flags, not counters. Set to one instead of incrementing. |  tedu | 2015-01-10 | 2 | -23/+15 |
* | use reallocarray() |  deraadt | 2014-12-01 | 3 | -5/+15 |
* | Prefer setvbuf() to setlinebuf() for portability; ok deraadt@ |  millert | 2014-11-26 | 1 | -2/+2 |
* | Make option string/struct const (since it is...). I've had this |  millert | 2014-11-26 | 1 | -4/+4 |
* | Check the mode flag being passed in to mmopen() instead of ignoring it. |  brad | 2014-11-08 | 1 | -3/+3 |
* | Use errc/warnc to simplify code. |  guenther | 2014-05-20 | 1 | -2/+2 |
* | unsigned char casts for ctype |  deraadt | 2013-11-26 | 2 | -5/+5 |
* | simple prototype repairs |  deraadt | 2013-11-12 | 1 | -2/+2 |
* | blacklist a select few characters instead of a limited whitelist for |  tedu | 2013-05-04 | 1 | -11/+21 |
* | remove uesless Pp; |  jmc | 2013-01-17 | 1 | -3/+2 |
* | Fix exit status when there is an error reading a file. |  millert | 2012-12-29 | 3 | -6/+10 |
* | Don't print zero length matches in -o mode. Found by otto@ who |  millert | 2012-12-12 | 1 | -2/+2 |
* | use proper eol offset for -o matching; spotted by ajacoutot@; ok millert@ |  otto | 2012-12-11 | 1 | -2/+2 |
* | Fix an integer overflow for very long lines by replacing the datatype of 2 offsets from int to regoff_t. |  aschrijver | 2011-07-17 | 1 | -3/+9 |
* | Fix spacing |  aschrijver | 2011-07-17 | 1 | -4/+4 |
* | the matchall magic shortcut requires we set c=1 to print now |  tedu | 2011-07-11 | 1 | -1/+2 |