Commit ebd67243 by Ben Straub

Only show lines that had blame run on them

parent d2e7532f
...@@ -128,10 +128,11 @@ int main(int argc, char *argv[]) ...@@ -128,10 +128,11 @@ int main(int argc, char *argv[])
while (i < git_blob_rawsize(blob)) { while (i < git_blob_rawsize(blob)) {
const char *eol = strchr(rawdata+i, '\n'); const char *eol = strchr(rawdata+i, '\n');
char oid[10] = {0}; char oid[10] = {0};
const git_blame_hunk *hunk = git_blame_get_hunk_byline(blame, line);
git_commit *hunkcommit; git_commit *hunkcommit;
const git_signature *sig; const git_signature *sig;
const git_blame_hunk *hunk = git_blame_get_hunk_byline(blame, line);
if (hunk) {
git_oid_tostr(oid, 10, &hunk->final_commit_id); git_oid_tostr(oid, 10, &hunk->final_commit_id);
check(git_commit_lookup(&hunkcommit, repo, &hunk->final_commit_id), "Commit lookup error"); check(git_commit_lookup(&hunkcommit, repo, &hunk->final_commit_id), "Commit lookup error");
sig = git_commit_author(hunkcommit); sig = git_commit_author(hunkcommit);
...@@ -142,8 +143,9 @@ int main(int argc, char *argv[]) ...@@ -142,8 +143,9 @@ int main(int argc, char *argv[])
line, line,
(int)(eol-rawdata-i), (int)(eol-rawdata-i),
rawdata+i); rawdata+i);
git_commit_free(hunkcommit); git_commit_free(hunkcommit);
}
i = eol - rawdata + 1; i = eol - rawdata + 1;
line++; line++;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment