Re: [PATCH v2] blame: prevent error if range ends past end of file

2017-10-26 Thread Isabella Stephens
On 27/10/17 2:31 am, SZEDER Gábor wrote: >> If the -L option is used to specify a line range in git blame, and the >> end of the range is past the end of the file, at present git will fail >> with a fatal error. This commit prevents such behaviour - instead the >> blame is display for any existing

Re: [PATCH v2] blame: prevent error if range ends past end of file

2017-10-26 Thread Isabella Stephens
On 26/10/17 7:48 pm, Jacob Keller wrote: > On Thu, Oct 26, 2017 at 12:01 AM, Isabella Stephens > wrote: >> If the -L option is used to specify a line range in git blame, and the >> end of the range is past the end of the file, at present git will fail >> with a fatal error. This commit prevents su

Re: [PATCH v2] blame: prevent error if range ends past end of file

2017-10-26 Thread SZEDER Gábor
> If the -L option is used to specify a line range in git blame, and the > end of the range is past the end of the file, at present git will fail > with a fatal error. This commit prevents such behaviour - instead the > blame is display for any existing lines within the specified range. s/is displ

Re: [PATCH v2] blame: prevent error if range ends past end of file

2017-10-26 Thread Jacob Keller
On Thu, Oct 26, 2017 at 12:01 AM, Isabella Stephens wrote: > If the -L option is used to specify a line range in git blame, and the > end of the range is past the end of the file, at present git will fail > with a fatal error. This commit prevents such behaviour - instead the > blame is display fo

[PATCH v2] blame: prevent error if range ends past end of file

2017-10-26 Thread Isabella Stephens
If the -L option is used to specify a line range in git blame, and the end of the range is past the end of the file, at present git will fail with a fatal error. This commit prevents such behaviour - instead the blame is display for any existing lines within the specified range. Signed-off-by: Isa