summaryrefslogtreecommitdiffabout
path: root/ui-tree.c
authorLars Hjemli <hjemli@gmail.com>2009-01-06 20:37:23 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2009-01-06 20:37:23 (UTC)
commitf3c99cf1cee25ae95ffea6188b40734e877bce20 (patch) (side-by-side diff)
tree6b996b4b1e8da4b8b56c8022036d5dce6d2d5e7f /ui-tree.c
parent03afc5fe1fe70b6e44b60708c89708060e6d5a90 (diff)
downloadcgit-f3c99cf1cee25ae95ffea6188b40734e877bce20.zip
cgit-f3c99cf1cee25ae95ffea6188b40734e877bce20.tar.gz
cgit-f3c99cf1cee25ae95ffea6188b40734e877bce20.tar.bz2
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 'ui-tree.c') (more/less context) (ignore whitespace changes)
-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
@@ -45,26 +45,28 @@ static void print_object(const unsigned char *sha1, char *path)
start = 0;
lineno = 0;
while(idx < size) {
if (buf[idx] == '\n') {
buf[idx] = '\0';
htmlf(linefmt, ++lineno);
html_txt(buf + start);
html("</td></tr>\n");
start = idx + 1;
}
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");
}
static int ls_item(const unsigned char *sha1, const char *base, int baselen,
const char *pathname, unsigned int mode, int stage,
void *cbdata)
{
char *name;
char *fullpath;
enum object_type type;