diff options
author | Lars Hjemli <hjemli@gmail.com> | 2009-01-06 21:51:09 +0100 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-01-06 21:51:09 +0100 |
commit | 25f6a1f4c29b6a6009a185e9473317f0fe64616d (patch) | |
tree | fe159412ae3c4c81d0c5aabfabc4ac8cc7ce6215 /ui-tree.c | |
parent | 50fbd46c917a06f60235da59adb860697ea94eb0 (diff) | |
parent | f3c99cf1cee25ae95ffea6188b40734e877bce20 (diff) |
Merge branch 'stable'
Diffstat (limited to 'ui-tree.c')
-rw-r--r-- | ui-tree.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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"); } |