Skip to content
Snippets Groups Projects
Commit 66413212 authored by Søren Sandmann Pedersen's avatar Søren Sandmann Pedersen
Browse files

CODING_STYLE: Delete the stuff about trailing spaces

Also fix various other minor issues.
parent cc9221ce
No related branches found
No related tags found
Loading
......@@ -19,9 +19,6 @@ not
Specific guidelines:
Indentation
===========
......@@ -93,7 +90,7 @@ or like this:
* It extends over multiple lines
*/
Generally comments should say things that is clear from the code
Generally comments should say things that aren't clear from the code
itself. If too many comments say obvious things, then people will just
stop reading all comments, including the good ones.
......@@ -152,21 +149,6 @@ Whitespace
if (condition) foo (); else bar (); /* Yuck! */
* Do eliminate trailing whitespace (space or tab characters) on any
line. Also, avoid putting initial or final blank lines into any
file, and never use multiple blank lines instead of a single blank
line.
* Do enable the default git pre-commit hook that detect trailing
whitespace for you and help you to avoid corrupting cairo's tree
with it. Do that as follows:
chmod a+x .git/hooks/pre-commit
* You might also find the git-stripspace utility helpful which acts as
a filter to remove trailing whitespace as well as initial, final,
and duplicate blank lines.
Function Definitions
====================
......@@ -174,7 +156,7 @@ Function Definitions
Function definitions should take the following form:
void
my_function (argument)
my_function (int argument)
{
do_my_things ();
}
......@@ -214,3 +196,4 @@ popular editors:
* vim:sw=4:sts=4:ts=8:tw=78:fo=tcroq:cindent:cino=\:0,(0
* vim:isk=a-z,A-Z,48-57,_,.,-,>
*/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment