Re: [PATCH] grep: add --blame so grep can show blame result at the same time
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:46:19
pi song [off-list ref] writes:
My god, this is too big. I cannot attach or paste in email. What should I do?
For a starter, try removing hunks that record only unwarranted changes, such as the following. They are all style regressions.
@@ -517,6 +563,8 @@ static int grep_buffer_1(struct grep_opt *opt, const char *name, show_name(opt, name); return 1; } + + /* Hit at this line. If we haven't shown the * pre-context lines, we would need to show them. * When asked to do "count", this still show
@@ -524,7 +572,9 @@ static int grep_buffer_1(struct grep_opt *opt, const char *name, * deserves to get that ;-). */ if (opt->pre_context) { + unsigned from; + if (opt->pre_context < lno) from = lno - opt->pre_context; else
@@ -590,8 +664,10 @@ static int grep_buffer_1(struct grep_opt *opt, const char *name, * make it another option? For now suppress them. */ if (opt->count && count) + { printf("%s%c%u\n", name, opt->null_following_name ? '\0' : ':', count); + } return !!last_hit; }