aboutsummaryrefslogtreecommitdiffstats
path: root/ui-tree.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2009-01-06 21:37:23 +0100
committerLars Hjemli <hjemli@gmail.com>2009-01-06 21:37:23 +0100
commitf3c99cf1cee25ae95ffea6188b40734e877bce20 (patch)
tree6b996b4b1e8da4b8b56c8022036d5dce6d2d5e7f /ui-tree.c
parentui-patch: whitespace changes in the patch generation code (diff)
downloadcgit-f3c99cf1cee25ae95ffea6188b40734e877bce20.tar.xz
cgit-f3c99cf1cee25ae95ffea6188b40734e877bce20.zip
ui-tree.c: do not add blank line when displaying blobs
Also, fix a related bug in the test-suite. Noticed-by: Jim Meyering <jim@meyering.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
-rw-r--r--ui-tree.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui-tree.c b/ui-tree.c
index 79332fc..4bf372a 100644
--- a/ui-tree.c
+++ b/ui-tree.c
@@ -54,8 +54,10 @@ static void print_object(const unsigned char *sha1, char *path)
}
idx++;
}
- htmlf(linefmt, ++lineno);
- html_txt(buf + start);
+ if (start < idx) {
+ htmlf(linefmt, ++lineno);
+ html_txt(buf + start);
+ }
html("</td></tr>\n");
html("</table>\n");
}