Re: [PATCH 2/2] t4205: indent here documents

2016-07-27 Thread Jeff King
On Wed, Jul 27, 2016 at 12:28:14PM -0700, Junio C Hamano wrote: > > Some of the tests actually care quite a bit about > > whitespace, but none of them do so at the beginning of the > > line (because they things like qz_to_tab_space to avoid > > I'll do s/they things/they use things/ here while qu

Re: [PATCH 2/2] t4205: indent here documents

2016-07-27 Thread Junio C Hamano
Jeff King writes: > Our usual style in the test scripts is to indent here > documents with tabs, and use "<<-" to strip the tabs. The > result is easier to read. > > This old test script did not do so in its inception, and > further tests added onto it followed the local style. Let's > bring it i

[PATCH 2/2] t4205: indent here documents

2016-07-27 Thread Jeff King
Our usual style in the test scripts is to indent here documents with tabs, and use "<<-" to strip the tabs. The result is easier to read. This old test script did not do so in its inception, and further tests added onto it followed the local style. Let's bring it in line with our usual style. Som