From c6e8f9fd809cc16960022c344b42be77229a70c6 Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Fri, 6 May 2016 11:49:25 +0200 Subject: [PATCH 1/1] make diffstat files an anchor (jump to delta) --- stagit.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stagit.c b/stagit.c index 434abb8..0d36abc 100644 --- a/stagit.c +++ b/stagit.c @@ -462,7 +462,7 @@ printshowfile(FILE *fp, struct commitinfo *ci) fputs("Diffstat:\n", fp); for (i = 0; i < ci->ndeltas; i++) { delta = git_patch_get_delta(ci->deltas[i]->patch); - fputs("
", fp); + fprintf(fp, "
", i); xmlencode(fp, delta->old_file.path, strlen(delta->old_file.path)); if (strcmp(delta->old_file.path, delta->new_file.path)) { fputs(" -> ", fp); @@ -482,7 +482,7 @@ printshowfile(FILE *fp, struct commitinfo *ci) memset(&linestr, '+', add); memset(&linestr[add], '-', del); - fprintf(fp, " | %zu", + fprintf(fp, " | %zu", ci->deltas[i]->addcount + ci->deltas[i]->delcount); fwrite(&linestr, 1, add, fp); fputs("", fp); @@ -499,8 +499,8 @@ printshowfile(FILE *fp, struct commitinfo *ci) for (i = 0; i < ci->ndeltas; i++) { patch = ci->deltas[i]->patch; delta = git_patch_get_delta(patch); - fprintf(fp, "diff --git a/%s b/%s\n", - relpath, delta->old_file.path, delta->old_file.path, + fprintf(fp, "diff --git a/%s b/%s\n", + i, relpath, delta->old_file.path, delta->old_file.path, relpath, delta->new_file.path, delta->new_file.path); /* check binary data */ -- 2.39.2