diff options
author | Lukas Fleischer | 2013-03-03 16:04:29 +0100 |
---|---|---|
committer | Lukas Fleischer | 2013-03-04 01:12:48 +0100 |
commit | 53bc747d311d18642fa3ad0cc0de34f3899ed1f4 (patch) | |
tree | 97e6fa2e4e7300f55a180917059b71e566c260fe /ui-commit.c | |
parent | 7f4e8c33aeb65bdc5695c9fd13ec1ceb100303c7 (diff) | |
download | cgit-53bc747d311d18642fa3ad0cc0de34f3899ed1f4.tar.gz cgit-53bc747d311d18642fa3ad0cc0de34f3899ed1f4.tar.bz2 cgit-53bc747d311d18642fa3ad0cc0de34f3899ed1f4.zip |
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>
Diffstat (limited to 'ui-commit.c')
-rw-r--r-- | ui-commit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-commit.c b/ui-commit.c index 536a8e8..74f37c8 100644 --- a/ui-commit.c +++ b/ui-commit.c | |||
@@ -39,7 +39,7 @@ void cgit_print_commit(char *hex, const char *prefix) | |||
39 | format_note(NULL, sha1, ¬es, PAGE_ENCODING, 0); | 39 | format_note(NULL, sha1, ¬es, PAGE_ENCODING, 0); |
40 | 40 | ||
41 | load_ref_decorations(DECORATE_FULL_REFS); | 41 | load_ref_decorations(DECORATE_FULL_REFS); |
42 | 42 | ||
43 | cgit_print_diff_ctrls(); | 43 | cgit_print_diff_ctrls(); |
44 | html("<table summary='commit info' class='commit-info'>\n"); | 44 | html("<table summary='commit info' class='commit-info'>\n"); |
45 | html("<tr><th>author</th><td>"); | 45 | html("<tr><th>author</th><td>"); |
@@ -75,7 +75,7 @@ void cgit_print_commit(char *hex, const char *prefix) | |||
75 | cgit_tree_link(prefix, NULL, NULL, ctx.qry.head, tmp, prefix); | 75 | cgit_tree_link(prefix, NULL, NULL, ctx.qry.head, tmp, prefix); |
76 | } | 76 | } |
77 | html("</td></tr>\n"); | 77 | html("</td></tr>\n"); |
78 | for (p = commit->parents; p ; p = p->next) { | 78 | for (p = commit->parents; p; p = p->next) { |
79 | parent = lookup_commit_reference(p->item->object.sha1); | 79 | parent = lookup_commit_reference(p->item->object.sha1); |
80 | if (!parent) { | 80 | if (!parent) { |
81 | html("<tr><td colspan='3'>"); | 81 | html("<tr><td colspan='3'>"); |