stagit

stagit: fix rendering of first TAB in file

else TABs wont render properly (interpreted as part of HTML whitespace)
at the first TAB of the line.

Hiltjo Posthuma contact@arjunchoudhary.com

commit: 578fc48 parent: 3b83d08
1 files changed, 1 insertions(+), 1 deletions(-)
Mstagit.c+1-1
M · stagit.c +1, -1
1@@ -379,7 +379,7 @@ int
2 writeblobhtml(FILE *fp, const git_blob *blob)
3 {
4 	size_t n = 0, i, prev;
5-	const char *nfmt = "<a href=\"#l%d\" class=\"line\" id=\"l%d\">%6d</a> ";
6+	const char *nfmt = "<a href=\"#l%d\" class=\"line\" id=\"l%d\">%6d</a>  ";
7 	const char *s = git_blob_rawcontent(blob);
8 	git_off_t len = git_blob_rawsize(blob);
9