From: Seija Kijin <doremylover123@xxxxxxxxx> Signed-off-by: Seija Kijin <doremylover123@xxxxxxxxx> --- grep: simplify is_empty_line Signed-off-by: Seija Kijin doremylover123@xxxxxxxxx Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-1418%2FAtariDreams%2FisEmpty-v1 Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-1418/AtariDreams/isEmpty-v1 Pull-Request: https://github.com/git/git/pull/1418 grep.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/grep.c b/grep.c index 06eed694936..f29f4dd9e08 100644 --- a/grep.c +++ b/grep.c @@ -1483,9 +1483,10 @@ static int fill_textconv_grep(struct repository *r, static int is_empty_line(const char *bol, const char *eol) { - while (bol < eol && isspace(*bol)) - bol++; - return bol == eol; + while (bol < eol) + if (!isspace(*bol)) + return 0; + return 1; } static int grep_source_1(struct grep_opt *opt, struct grep_source *gs, int collect_hits) base-commit: 6bae53b138a1f38d8887f6b46d17661357a1468b -- gitgitgadget