Re: [PATCH v6 5/6] convert: move multiple file filter error handling to separate function

2017-06-26 Thread Stefan Beller
On Mon, Jun 26, 2017 at 10:56 AM, Junio C Hamano wrote: > Not about this patch, but viewing this with > > git show -w --color-moved=zebra > > gives an interesting result. The bulk of the part moved are > re-indented, and the comment string gets zebra stripes, as if the

Re: [PATCH v6 5/6] convert: move multiple file filter error handling to separate function

2017-06-26 Thread Junio C Hamano
Lars Schneider writes: > Refactoring the filter error handling is useful for the subsequent patch > 'convert: add "status=delayed" to filter process protocol'. > > In addition, replace the parentheses around the empty "if" block with a > single semicolon to adhere to

Re: [PATCH v6 5/6] convert: move multiple file filter error handling to separate function

2017-06-26 Thread Junio C Hamano
Not about this patch, but viewing this with git show -w --color-moved=zebra gives an interesting result. The bulk of the part moved are re-indented, and the comment string gets zebra stripes, as if the line movement detection code does not realize that these came from the same place.

[PATCH v6 5/6] convert: move multiple file filter error handling to separate function

2017-06-25 Thread Lars Schneider
Refactoring the filter error handling is useful for the subsequent patch 'convert: add "status=delayed" to filter process protocol'. In addition, replace the parentheses around the empty "if" block with a single semicolon to adhere to the Git style guide. Signed-off-by: Lars Schneider