tfix newline after header - stagit - static git page generator
HTML git clone git://src.adamsgaard.dk/stagit
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 200ccad8b566c3705f3d3e5dd7d5456be85e6900
DIR parent 444e41b315925181f3ead6f2c3dd1354475e90e3
HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Tue, 5 Jan 2016 21:03:39 +0100
fix newline after header
Diffstat:
M stagit.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/stagit.c b/stagit.c
t@@ -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++) {