commit 0e9eee4fa329f5c909f5f21abd01e8019d552213
parent cf868c8eeb45f47063cc5d30b04b552e7dd5a7c4
Author: sin <sin@2f30.org>
Date: Wed, 20 Jan 2016 15:05:01 +0000
Revert "If we have a match any pattern also match against blank lines"
Doesn't really make sense for grep . to match blank lines.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/grep.c b/grep.c
@@ -115,7 +115,7 @@ grep(FILE *fp, const char *str)
buf[len - 1] = '\0';
SLIST_FOREACH(pnode, &phead, entry) {
if (!Fflag) {
- if (regexec(&pnode->preg, buf[0] == '\0' ? "\n" : buf, 0, NULL, 0) ^ vflag)
+ if (regexec(&pnode->preg, buf, 0, NULL, 0) ^ vflag)
continue;
} else {
if (!xflag) {