* Put no space between function name and the following parenthesis.
* Put one space between if/switch/for/while/do and opening curly brace.
* Always use curly braces around if/for/while/do bodies, even if they only
- contains one statement.
+ contain one statement.
* If possible, keep lines at most 80 character wide for a 2 character tab
width.
* Use only lowercase names for functions and variables.
If true, ccache will include the current working directory in the hash that
is used to distinguish two compilations. This prevents a problem with the
- storage of the current working directory in the debug info of a object
+ storage of the current working directory in the debug info of an object
file, which can lead ccache to give a cached object file that has the
working directory in the debug info set incorrectly. This option is off by
default as the incorrect setting of this debug info rarely causes problems.
# True=indent the 'if' one level
indent_else_if = false # false/true
-# Amount to indent variable declarations after a open brace. neg=relative, pos=absolute
+# Amount to indent variable declarations after an open brace. neg=relative, pos=absolute
indent_var_def_blk = 0 # number
# Indent continued variable declarations instead of aligning.
# Related to pos_class_colon, nl_class_init_args, and pos_comma.
nl_class_colon = ignore # ignore/add/remove/force
-# Change simple unbraced if statements into a one-liner
+# Change simple unbraced if statements into an one-liner
# 'if(b)\n i++;' => 'if(b) i++;'
nl_create_if_one_liner = false # false/true
-# Change simple unbraced for statements into a one-liner
+# Change simple unbraced for statements into an one-liner
# 'for (i=0;i<5;i++)\n foo(i);' => 'for (i=0;i<5;i++) foo(i);'
nl_create_for_one_liner = false # false/true
-# Change simple unbraced while statements into a one-liner
+# Change simple unbraced while statements into an one-liner
# 'while (i<5)\n foo(i++);' => 'while (i<5) foo(i++);'
nl_create_while_one_liner = false # false/true
# Will substitute $(class) with the class name.
cmt_insert_class_header = "" # string
-# The filename that contains text to insert before a Obj-C message specification if the method isn't preceeded with a C/C++ comment.
+# The filename that contains text to insert before an Obj-C message specification if the method isn't preceded with a C/C++ comment.
# Will substitute $(message) with the function name and $(javaparam) with the javadoc @param and @return stuff.
cmt_insert_oc_msg_header = "" # string