diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-02-26 19:59:11 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-02-26 19:59:11 +0100 |
commit | 78c29a1de25a88b92858d785772315a537cd4035 (patch) | |
tree | d68ef84ba129eecf2cfe6271c3a7a4e057a261b1 | |
parent | 2b5004624599fdc6e289702a7c3626a96a1a99dd (diff) |
fix right-alignment of "Files" column
-rw-r--r-- | stagit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -435,7 +435,7 @@ writelog(FILE *fp, const git_oid *oid) git_revwalk_simplify_first_parent(w); fputs("<table id=\"log\"><thead>\n<tr><td>Date</td><td>Commit message</td>" - "<td>Author</td><td>Files</td><td class=\"num\">+</td>" + "<td>Author</td><td class=\"num\">Files</td><td class=\"num\">+</td>" "<td class=\"num\">-</td></tr>\n</thead><tbody>\n", fp); while (!git_revwalk_next(&id, w)) { |