More hacking cosmetics

This commit is contained in:
Berke Viktor 2012-10-28 09:58:09 +01:00
parent 52ad256474
commit fe6bda343b
1 changed files with 7 additions and 7 deletions

View File

@ -9,14 +9,14 @@ Just some tips if you're going to help with HexChat code (patches etc):
* Try to stick to the same consistant coding style (vertically aligned braces, a space after if, while, functions etc.): * Try to stick to the same consistant coding style (vertically aligned braces, a space after if, while, functions etc.):
<pre>void <pre>void
routine (void) routine (void)
{
if (function (a, b, c))
{ {
x = a + 1; if (function (a, b, c))
} {
}</pre> x = a + 1;
}
}</pre>
* Don't use "//" C++ style comments, some compilers don't like them. * Don't use "//" C++ style comments, some compilers don't like them.