On Mon, Nov 9, 2020 at 7:47 PM Junio C Hamano <gitster@xxxxxxxxx> wrote: > It is unclear why 3/3 needs to be separate (in other words, is there > a reason why 1/3 and 2/3 need to be done while the function is in > the more complex form, instead of doing what 1/3 and 2/3 wanted to > do to the function in a way that does not require later clean-up?), > but other than that, the end-result looks good. It doesn't need to be separate. It's there just because the jump from the current code to 1/3 is more natural this way (v2), but 3/3 can certainly be merged to 1/3. We will have something a little bit odd in the history: cur=$last if [[ "$cur" != "$1" ]]; then echo "$cur" fi Why not just use $last instead of $cur? And in fact why clear $cur if we are going to be setting it again? It's just a little odd, but I sent a v3 with 1/3 and 3/3 merged, and it's not too odd. Cheers. -- Felipe Contreras