Re: [PATCH v5 13/16] merge-recursive: write the commit title in one go

2016-08-01 Thread Johannes Schindelin
Hi Junio, On Wed, 27 Jul 2016, Junio C Hamano wrote: > Johannes Schindelin writes: > > > Let's make sure that the same holds true when outputting the commit > > title: previously, we used several printf() statements to stdout and > > speculated that stdout's buffer is large enough to hold the e

Re: [PATCH v5 13/16] merge-recursive: write the commit title in one go

2016-07-27 Thread Junio C Hamano
Johannes Schindelin writes: > Let's make sure that the same holds true when outputting the commit > title: previously, we used several printf() statements to stdout and > speculated that stdout's buffer is large enough to hold the entire > commit title. s/speculate/assume/; other than that looks

[PATCH v5 13/16] merge-recursive: write the commit title in one go

2016-07-26 Thread Johannes Schindelin
In 66a155b (Enable output buffering in merge-recursive., 2007-01-14), we changed the code such that it prints the output in one go, to avoid interfering with the progress output. Let's make sure that the same holds true when outputting the commit title: previously, we used several printf() stateme