lists.zerezo.com
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 2/6] grep: move context hunk mark handling into show_line()
- Date: Wed, 01 Jul 2009 15:55:19 -0700
- From: Junio C Hamano <gitster@xxxxxxxxx>
- Subject: Re: [PATCH 2/6] grep: move context hunk mark handling into show_line()
René Scharfe <rene.scharfe@xxxxxxxxxxxxxx> writes:
> Move last_shown into struct grep_opt, to make it available in
> show_line(), and then make the function handle the printing of hunk
> marks for context lines in a central place.
Makes sense. But now "are we showing from a separate block of text" check
is in show_line() and relieves the caller of show_line() from doing so,...
> else if (last_hit &&
> lno <= last_hit + opt->post_context) {
> /* If the last hit is within the post context,
> * we need to show this line.
> */
> - if (last_shown && lno != last_shown + 1)
> - fputs(hunk_mark, stdout);
> show_line(opt, bol, eol, name, lno, '-');
> - last_shown = lno;
... the comment in this context should go, no?
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html