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>
diff --git a/builtin-pickaxe.c b/builtin-pickaxe.c
index 74c7c9a..b595299 100644
--- a/builtin-pickaxe.c
+++ b/builtin-pickaxe.c
@@ -1085,6 +1085,9 @@
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;
}