stagit: fix rendering of first TAB in file - stagit-gopher - A git gopher frontend. (mirror)
 (HTM) git clone git://bitreich.org/stagit-gopher/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/stagit-gopher/
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Tags
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 394d90b7bb878b54173a08bfe31402ddd29a2a54
 (DIR) parent 99583eee62af43c0504bfc2aab6058b69a46313b
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Mon, 17 Apr 2017 13:39:05 +0200
       
       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.
       
       Diffstat:
         M stagit.c                            |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/stagit.c b/stagit.c
       @@ -379,7 +379,7 @@ int
        writeblobhtml(FILE *fp, const git_blob *blob)
        {
                size_t n = 0, i, prev;
       -        const char *nfmt = "<a href=\"#l%d\" class=\"line\" id=\"l%d\">%6d</a> ";
       +        const char *nfmt = "<a href=\"#l%d\" class=\"line\" id=\"l%d\">%6d</a>  ";
                const char *s = git_blob_rawcontent(blob);
                git_off_t len = git_blob_rawsize(blob);