Re: [PATCH 00/21] Kill the_index part 4

2018-08-28 Thread Duy Nguyen
On Mon, Aug 27, 2018 at 7:32 PM Stefan Beller wrote: > > Besides some small conflicts on 'pu', like the previous part, it also > > breaks 'pu' because of API changes. The fix is trivial though, just > > prepend the_repository as the first argument for the broken function > > calls. > > This

Re: [PATCH 00/21] Kill the_index part 4

2018-08-27 Thread Stefan Beller
On Sun, Aug 26, 2018 at 3:03 AM Nguyễn Thái Ngọc Duy wrote: > > This continues the journey of getting rid of the_index at least in > library code. The focus of part 4 is diff code. Since 'struct > repository *' is passed around more (and even more in part 5), I take > this opportunity to remove

[PATCH 00/21] Kill the_index part 4

2018-08-26 Thread Nguyễn Thái Ngọc Duy
This continues the journey of getting rid of the_index at least in library code. The focus of part 4 is diff code. Since 'struct repository *' is passed around more (and even more in part 5), I take this opportunity to remove some the_repository references too. Besides some small conflicts on