зеркало из https://github.com/microsoft/git.git
git-pickaxe: fix nth_line()
We would want to be able to refer to the end of the file as "the beginning of Nth line" for a file that is N lines long. Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Родитель
1617baa587
Коммит
1ca6ca876e
|
@ -1085,6 +1085,9 @@ static int prepare_lines(struct scoreboard *sb)
|
|||
bol = 1;
|
||||
}
|
||||
}
|
||||
sb->lineno = xrealloc(sb->lineno,
|
||||
sizeof(int* ) * (num + incomplete + 1));
|
||||
sb->lineno[num + incomplete] = buf - sb->final_buf;
|
||||
sb->num_lines = num + incomplete;
|
||||
return sb->num_lines;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче