author | Lars Hjemli <hjemli@gmail.com> | 2009-01-06 20:37:23 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-01-06 20:37:23 (UTC) |
commit | f3c99cf1cee25ae95ffea6188b40734e877bce20 (patch) (unidiff) | |
tree | 6b996b4b1e8da4b8b56c8022036d5dce6d2d5e7f /ui-tree.c | |
parent | 03afc5fe1fe70b6e44b60708c89708060e6d5a90 (diff) | |
download | cgit-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>
-rw-r--r-- | ui-tree.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -55,6 +55,8 @@ static void print_object(const unsigned char *sha1, char *path) | |||
55 | idx++; | 55 | idx++; |
56 | } | 56 | } |
57 | htmlf(linefmt, ++lineno); | 57 | if (start < idx) { |
58 | html_txt(buf + start); | 58 | htmlf(linefmt, ++lineno); |
59 | html_txt(buf + start); | ||
60 | } | ||
59 | html("</td></tr>\n"); | 61 | html("</td></tr>\n"); |
60 | html("</table>\n"); | 62 | html("</table>\n"); |