author | Lars Hjemli <hjemli@gmail.com> | 2009-01-06 20:51:09 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-01-06 20:51:09 (UTC) |
commit | 25f6a1f4c29b6a6009a185e9473317f0fe64616d (patch) (unidiff) | |
tree | fe159412ae3c4c81d0c5aabfabc4ac8cc7ce6215 /ui-tree.c | |
parent | 50fbd46c917a06f60235da59adb860697ea94eb0 (diff) | |
parent | f3c99cf1cee25ae95ffea6188b40734e877bce20 (diff) | |
download | cgit-25f6a1f4c29b6a6009a185e9473317f0fe64616d.zip cgit-25f6a1f4c29b6a6009a185e9473317f0fe64616d.tar.gz cgit-25f6a1f4c29b6a6009a185e9473317f0fe64616d.tar.bz2 |
Merge branch 'stable'
-rw-r--r-- | ui-tree.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -49,18 +49,20 @@ static void print_object(const unsigned char *sha1, char *path) | |||
49 | buf[idx] = '\0'; | 49 | buf[idx] = '\0'; |
50 | htmlf(linefmt, ++lineno); | 50 | htmlf(linefmt, ++lineno); |
51 | html_txt(buf + start); | 51 | html_txt(buf + start); |
52 | html("</td></tr>\n"); | 52 | html("</td></tr>\n"); |
53 | start = idx + 1; | 53 | start = idx + 1; |
54 | } | 54 | } |
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"); |
61 | } | 63 | } |
62 | 64 | ||
63 | 65 | ||
64 | static int ls_item(const unsigned char *sha1, const char *base, int baselen, | 66 | static int ls_item(const unsigned char *sha1, const char *base, int baselen, |
65 | const char *pathname, unsigned int mode, int stage, | 67 | const char *pathname, unsigned int mode, int stage, |
66 | void *cbdata) | 68 | void *cbdata) |