stagit

static git repository generator
Log | Files | Refs | README | LICENSE

commit 200ccad8b566c3705f3d3e5dd7d5456be85e6900
parent 444e41b315925181f3ead6f2c3dd1354475e90e3
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Tue Jan  5 21:03:39 2016

fix newline after header

Diffstat:
 stagit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stagit.c b/stagit.c @@ -410,7 +410,7 @@ printshowfile(struct commitinfo *ci) break; fputs("<span class=\"h\">", fp); - xmlencode(fp, hunk->header, strcspn(hunk->header, "\n")); + xmlencode(fp, hunk->header, hunk->header_len); fputs("</span>", fp); for (k = 0; ; k++) {