aboutsummaryrefslogtreecommitdiffstats
path: root/ui-tree.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2009-01-06 21:51:09 +0100
committerLars Hjemli <hjemli@gmail.com>2009-01-06 21:51:09 +0100
commit25f6a1f4c29b6a6009a185e9473317f0fe64616d (patch)
treefe159412ae3c4c81d0c5aabfabc4ac8cc7ce6215 /ui-tree.c
parentMerge branch 'stable' (diff)
parentui-tree.c: do not add blank line when displaying blobs (diff)
downloadcgit-25f6a1f4c29b6a6009a185e9473317f0fe64616d.tar.xz
cgit-25f6a1f4c29b6a6009a185e9473317f0fe64616d.zip
Merge branch 'stable'
Diffstat (limited to 'ui-tree.c')
-rw-r--r--ui-tree.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui-tree.c b/ui-tree.c
index 051db7c..9876c99 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");
}