Re: [PATCH RFC 06/20] cat-file: remove mark_query from expand_data

2019-03-03 Thread Christian Couder
On Fri, Feb 22, 2019 at 5:07 PM Olga Telezhnaya wrote: > > Get rid of mark_query field in struct expand_data. > expand_data may be global further as we use it in ref-filter also, > so we need to remove cat-file specific fields from it. > > All globals that I add through this patch will be deleted

Re: [PATCH RFC 06/20] cat-file: remove mark_query from expand_data

2019-02-28 Thread Jeff King
On Fri, Feb 22, 2019 at 04:05:45PM +, Olga Telezhnaya wrote: > Get rid of mark_query field in struct expand_data. > expand_data may be global further as we use it in ref-filter also, > so we need to remove cat-file specific fields from it. > > All globals that I add through this patch will be

[PATCH RFC 06/20] cat-file: remove mark_query from expand_data

2019-02-22 Thread Olga Telezhnaya
Get rid of mark_query field in struct expand_data. expand_data may be global further as we use it in ref-filter also, so we need to remove cat-file specific fields from it. All globals that I add through this patch will be deleted in the end, so treat it just as the middle step. Signed-off-by: Ol