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:
Junio C Hamano 2006-10-20 18:48:18 -07:00
Родитель 1617baa587
Коммит 1ca6ca876e
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -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;
}