mirror of
https://git.zx2c4.com/cgit
synced 2025-06-21 01:25:46 +02:00
Fix several whitespace errors
* Remove whitespace at the end of lines. * Replace space indentation by tabs. * Add whitespace before/after several operators ("+", "-", "*", ...) * Add whitespace to assignments ("foo = bar;"). * Fix whitespace in parameter lists ("foobar(foo, bar, 42)"). Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
This commit is contained in:
parent
7f4e8c33ae
commit
53bc747d31
14 changed files with 99 additions and 99 deletions
|
@ -39,7 +39,7 @@ void cgit_print_commit(char *hex, const char *prefix)
|
|||
format_note(NULL, sha1, ¬es, PAGE_ENCODING, 0);
|
||||
|
||||
load_ref_decorations(DECORATE_FULL_REFS);
|
||||
|
||||
|
||||
cgit_print_diff_ctrls();
|
||||
html("<table summary='commit info' class='commit-info'>\n");
|
||||
html("<tr><th>author</th><td>");
|
||||
|
@ -75,7 +75,7 @@ void cgit_print_commit(char *hex, const char *prefix)
|
|||
cgit_tree_link(prefix, NULL, NULL, ctx.qry.head, tmp, prefix);
|
||||
}
|
||||
html("</td></tr>\n");
|
||||
for (p = commit->parents; p ; p = p->next) {
|
||||
for (p = commit->parents; p; p = p->next) {
|
||||
parent = lookup_commit_reference(p->item->object.sha1);
|
||||
if (!parent) {
|
||||
html("<tr><td colspan='3'>");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue