diff options
Diffstat (limited to 'ui-log.c')
-rw-r--r-- | ui-log.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -258,7 +258,8 @@ static void print_commit(struct commit *commit, struct rev_info *revs) | |||
258 | if (ctx.repo->enable_log_filecount) | 258 | if (ctx.repo->enable_log_filecount) |
259 | htmlf("</td><td>%d", files); | 259 | htmlf("</td><td>%d", files); |
260 | if (ctx.repo->enable_log_linecount) | 260 | if (ctx.repo->enable_log_linecount) |
261 | htmlf("</td><td>-%d/+%d", rem_lines, add_lines); | 261 | htmlf("</td><td><span class='deletions'>-%d</span>/" |
262 | "<span class='insertions'>+%d</span>", rem_lines, add_lines); | ||
262 | 263 | ||
263 | html("</td></tr>\n"); | 264 | html("</td></tr>\n"); |
264 | 265 | ||