don't winge about coding style without justification; justify it.

This commit is contained in:
Richard Hughes 2008-05-02 14:42:51 +01:00
parent 1007f7bcef
commit f65d83cac5

31
CodingStyle Normal file
View File

@ -0,0 +1,31 @@
== Indent ==
Use "indent -kr -i8 -pcs -lps -psl *.c" to convert to "mostly correct" indenting levels.
== Tabs ==
Tabs are the size of 8 spaces, and should be used in preference to spaces.
== Overlong lines ==
Functions that are two long for one line are intented with tabs and then
spaces to the start of the bracket:
libnotify_event ("HAL does not have PowerManagement capability",
LIBNOTIFY_URGENCY_CRITICAL, NULL);
== Braces ==
Functions have curly brace on same line:
if (icon == NULL) {
g_warning ("Cannot find icon");
return FALSE;
}
Braces not-ommitted for single line:
if (!false) {
g_warning ("Cannot find icon");
}