1,4c1 < # ADHcrusti.cfg < < # Based on http://uncrustify.sourceforge.net/default.cfg < # Uncrustify 0.60 ==> ADHcrusti.cfg --- > # Uncrustify 0.60 11c8 < newlines = crlf # auto/lf/crlf/cr --- > newlines = auto # auto/lf/crlf/cr 14c11 < input_tab_size = 4 # number --- > input_tab_size = 8 # number 17c14 < output_tab_size = 4 # number --- > output_tab_size = 8 # number 24a22,35 > # Allow interpreting '>=' and '>>=' as part of a template in 'void f(list>=val);'. > # If true (default), 'assert(x<0 && y>=3)' will be broken. > # Improvements to template detection may make this option obsolete. > tok_split_gte = false # false/true > > # Control what to do with the UTF-8 BOM (recommend 'remove') > utf8_bom = ignore # ignore/add/remove/force > > # If the file contains bytes with values between 128 and 255, but is not UTF-8, then output as UTF-8 > utf8_byte = false # false/true > > # Force the output encoding to UTF-8 > utf8_force = false # false/true > 31c42,46 < indent_columns = 4 # number --- > indent_columns = 8 # number > > # The continuation indent. If non-zero, this overrides the indent of '(' and '=' continuation indents. > # For FreeBSD, this is set to 4. Negative value is absolute and not increased for each ( level > indent_continue = 0 # number 35,37c50,56 < # 1=indent with tabs, align with spaces < # 2=indent and align with tabs < indent_with_tabs = 0 # number --- > # 1=indent with tabs to brace level, align with spaces > # 2=indent and align with tabs, using spaces when not on a tabstop > indent_with_tabs = 1 # number > > # Comments that are not a brace level are indented with tabs on a tabstop. > # Requires indent_with_tabs=2. If false, will use spaces. > indent_cmt_with_tabs = false # false/true 54a74,79 > # Disabled indenting class braces if indent_braces is true > indent_braces_no_class = false # false/true > > # Disabled indenting struct braces if indent_braces is true > indent_braces_no_struct = false # false/true > 72c97 < indent_class = true # false/true --- > indent_class = false # false/true 76a102,107 > # Virtual indent from the ':' for member initializers. Default is 2 > indent_ctor_init_leading = 2 # number > > # Additional indenting for constructor initializer list > indent_ctor_init = 0 # number > 83a115,121 > # Indent continued variable declarations instead of aligning. > indent_var_def_cont = false # false/true > > # True: force indentation of function definition to start in column 1 > # False: use the default behavior > indent_func_def_force_col1 = false # false/true > 145c183 < indent_access_spec = -input_tab_size # number --- > indent_access_spec = 1 # number 165a204,206 > # If 'indent_bool_paren' is true, controls the indent of the first expression. If TRUE, aligns the first expression to the following ones > indent_first_bool_expr = false # false/true > 175a217,226 > # Indent OC blocks at brace level instead of usual rules. > indent_oc_block = false # false/true > > # Indent OC blocks in a message relative to the parameter name. > # 0=use indent_oc_block rules, 1+=spaces to indent > indent_oc_block_msg = 0 # number > > # Minimum indent for subsequent parameters > indent_oc_msg_colon = 0 # number > 184c235,244 < sp_assign = add # ignore/add/remove/force --- > sp_assign = ignore # ignore/add/remove/force > > # Add or remove space around '=' in C++11 lambda capture specifications. Overrides sp_assign > sp_cpp_lambda_assign = ignore # ignore/add/remove/force > > # Add or remove space after the capture specification in C++11 lambda. > sp_cpp_lambda_paren = ignore # ignore/add/remove/force > > # Add or remove space around assignment operator '=' in a prototype > sp_assign_default = ignore # ignore/add/remove/force 204,205c264,268 < # Add or remove space after preprocessor '#' stringify operator. Default=Add < sp_pp_stringify = add # ignore/add/remove/force --- > # Add or remove space after preprocessor '#' stringify operator. Also affects the '#@' charizing operator. > sp_pp_stringify = ignore # ignore/add/remove/force > > # Add or remove space before preprocessor '#' stringify operator as in '#define x(y) L#y'. > sp_before_pp_stringify = ignore # ignore/add/remove/force 208c271 < sp_bool = add # ignore/add/remove/force --- > sp_bool = ignore # ignore/add/remove/force 211c274 < sp_compare = add # ignore/add/remove/force --- > sp_compare = ignore # ignore/add/remove/force 220c283 < sp_balance_nested_parens = true # false/true --- > sp_balance_nested_parens = false # false/true 223c286 < sp_paren_brace = force # ignore/add/remove/force --- > sp_paren_brace = ignore # ignore/add/remove/force 240a304,306 > # Add or remove space after a pointer star '*', if followed by an open paren (function types). > sp_ptr_star_paren = ignore # ignore/add/remove/force > 262a329,331 > # Add or remove space before the paren in the D constructs 'template Foo(' and 'class Foo('. > sp_before_template_paren = ignore # ignore/add/remove/force > 281a351,357 > # Add or remove space between '>' and '>' in '>>' (template stuff C++/C# only). Default=Add > sp_angle_shift = add # ignore/add/remove/force > > # Permit removal of the space between '>>' in 'foo >' (C++11 only). Default=False > # sp_angle_shift cannot remove the space without this option. > sp_permit_cpp11_shift = false # false/true > 283c359 < sp_before_sparen = force # ignore/add/remove/force --- > sp_before_sparen = ignore # ignore/add/remove/force 290a367,369 > # Add or remove space before if-condition '('. Overrides sp_inside_sparen. > sp_inside_sparen_open = ignore # ignore/add/remove/force > 310c389 < sp_before_semi_for = force # ignore/add/remove/force --- > sp_before_semi_for = ignore # ignore/add/remove/force 330c409 < # Add or remove space inside '[' and ']' --- > # Add or remove space inside a non-empty '[' and ']' 338a418,420 > # Add or remove space between an open paren and comma: '(,' vs '( ,' > sp_paren_comma = force # ignore/add/remove/force > 355c437 < sp_after_operator_sym = remove # ignore/add/remove/force --- > sp_after_operator_sym = ignore # ignore/add/remove/force 358c440 < sp_after_cast = remove # ignore/add/remove/force --- > sp_after_cast = ignore # ignore/add/remove/force 364c446 < sp_cpp_cast_paren = remove # ignore/add/remove/force --- > sp_cpp_cast_paren = ignore # ignore/add/remove/force 367c449 < sp_sizeof_paren = remove # ignore/add/remove/force --- > sp_sizeof_paren = ignore # ignore/add/remove/force 389c471 < sp_func_proto_paren = remove # ignore/add/remove/force --- > sp_func_proto_paren = ignore # ignore/add/remove/force 392c474 < sp_func_def_paren = remove # ignore/add/remove/force --- > sp_func_def_paren = ignore # ignore/add/remove/force 395c477 < sp_inside_fparens = remove # ignore/add/remove/force --- > sp_inside_fparens = ignore # ignore/add/remove/force 399a482,487 > # Add or remove space inside the first parens in the function type: 'void (*x)(...)' > sp_inside_tparen = ignore # ignore/add/remove/force > > # Add or remove between the parens in the function type: 'void (*x)(...)' > sp_after_tparen_close = ignore # ignore/add/remove/force > 404c492 < sp_fparen_brace = force # ignore/add/remove/force --- > sp_fparen_brace = ignore # ignore/add/remove/force 407c495,499 < sp_func_call_paren = remove # ignore/add/remove/force --- > sp_func_call_paren = ignore # ignore/add/remove/force > > # Add or remove space between function name and '()' on function calls without parameters. > # If set to 'ignore' (the default), sp_func_call_paren is used. > sp_func_call_paren_empty = ignore # ignore/add/remove/force 414c506 < sp_func_class_paren = remove # ignore/add/remove/force --- > sp_func_class_paren = ignore # ignore/add/remove/force 417c509 < sp_return_paren = force # ignore/add/remove/force --- > sp_return_paren = ignore # ignore/add/remove/force 427a520,534 > # Add or remove space between 'throw' and anything other than '(' as in '@throw [...];' > sp_after_throw = ignore # ignore/add/remove/force > > # Add or remove space between 'catch' and '(' in 'catch (something) { }' > # If set to ignore, sp_before_sparen is used. > sp_catch_paren = ignore # ignore/add/remove/force > > # Add or remove space between 'version' and '(' in 'version (something) { }' (D language) > # If set to ignore, sp_before_sparen is used. > sp_version_paren = ignore # ignore/add/remove/force > > # Add or remove space between 'scope' and '(' in 'scope (something) { }' (D language) > # If set to ignore, sp_before_sparen is used. > sp_scope_paren = ignore # ignore/add/remove/force > 435c542 < sp_else_brace = force # ignore/add/remove/force --- > sp_else_brace = ignore # ignore/add/remove/force 438c545 < sp_brace_else = add # ignore/add/remove/force --- > sp_brace_else = ignore # ignore/add/remove/force 444c551 < sp_catch_brace = add # ignore/add/remove/force --- > sp_catch_brace = ignore # ignore/add/remove/force 456c563 < sp_try_brace = add # ignore/add/remove/force --- > sp_try_brace = ignore # ignore/add/remove/force 506a614,621 > # Add or remove space after the colon in immutable dictionary expression > # 'NSDictionary *test = @{@"foo" :@"bar"};' > sp_after_oc_dict_colon = ignore # ignore/add/remove/force > > # Add or remove space before the colon in immutable dictionary expression > # 'NSDictionary *test = @{@"foo" :@"bar"};' > sp_before_oc_dict_colon = ignore # ignore/add/remove/force > 524c639,640 < # '@selector(msgName).' vs '@selector (msgName)' --- > # '@selector(msgName)' vs '@selector (msgName)' > # Also applies to @protocol() constructs 526a643,651 > # Add or remove space between '@selector(x)' and the following word > # '@selector(foo) a:' vs '@selector(foo)a:' > sp_after_oc_at_sel_parens = ignore # ignore/add/remove/force > > # Add or remove space inside '@selector' parens > # '@selector(foo)' vs '@selector( foo )' > # Also applies to @protocol() constructs > sp_inside_oc_at_sel_parens = ignore # ignore/add/remove/force > 534a660,666 > # Add or remove space between the receiver and selector in a message. > # '[receiver selector ...]' > sp_after_oc_msg_receiver = ignore # ignore/add/remove/force > > # Add or remove space after @property. > sp_after_oc_property = ignore # ignore/add/remove/force > 536c668 < sp_cond_colon = force # ignore/add/remove/force --- > sp_cond_colon = ignore # ignore/add/remove/force 539c671 < sp_cond_question = force # ignore/add/remove/force --- > sp_cond_question = ignore # ignore/add/remove/force 546a679,687 > # Control the spacing after ':' in 'for (TYPE VAR : EXPR)' (Java) > sp_after_for_colon = ignore # ignore/add/remove/force > > # Control the spacing before ':' in 'for (TYPE VAR : EXPR)' (Java) > sp_before_for_colon = ignore # ignore/add/remove/force > > # Control the spacing in 'extern (C)' (D) > sp_extern_paren = ignore # ignore/add/remove/force > 548c689 < sp_cmt_cpp_start = force # ignore/add/remove/force --- > sp_cmt_cpp_start = ignore # ignore/add/remove/force 552a694,705 > # Controls the spaces after 'new', 'delete', and 'delete[]' > sp_after_new = ignore # ignore/add/remove/force > > # Controls the spaces before a trailing or embedded comment > sp_before_tr_emb_cmt = ignore # ignore/add/remove/force > > # Number of spaces before a trailing or embedded comment > sp_num_before_tr_emb_cmt = 0 # number > > # Control space between a Java annotation and the open paren. > sp_annotation_paren = ignore # ignore/add/remove/force > 661c814 < # it will qualify for being aligned. --- > # it will qualify for being aligned. This has to be > 0 to do anything. 696a850,852 > # # Align macro functions and variables together > align_pp_define_together = false # false/true > 708a865,870 > # If true, always align with the first parameter, even if it is too short. > align_oc_msg_colon_first = false # false/true > > # Aligning parameters in an Obj-C '+' or '-' declaration on the ':' > align_oc_decl_colon = false # false/true > 717c879 < nl_assign_leave_one_liners = true # false/true --- > nl_assign_leave_one_liners = false # false/true 720c882 < nl_class_leave_one_liners = true # false/true --- > nl_class_leave_one_liners = false # false/true 723c885 < nl_enum_leave_one_liners = true # false/true --- > nl_enum_leave_one_liners = false # false/true 726c888 < nl_getset_leave_one_liners = true # false/true --- > nl_getset_leave_one_liners = false # false/true 729c891 < nl_func_leave_one_liners = true # false/true --- > nl_func_leave_one_liners = false # false/true 733a896,898 > # Don't split one-line OC messages > nl_oc_msg_leave_one_liner = false # false/true > 741c906 < nl_end_of_file = force # ignore/add/remove/force --- > nl_end_of_file = ignore # ignore/add/remove/force 744c909 < nl_end_of_file_min = 1 # number --- > nl_end_of_file_min = 0 # number 755c920,921 < # The number of newlines after a block of variable definitions --- > # The number of blank lines after a block of variable definitions at the top of a function body > # 0 = No change (default) 757a924,947 > # The number of newlines before a block of typedefs > # 0 = No change (default) > nl_typedef_blk_start = 0 # number > > # The number of newlines after a block of typedefs > # 0 = No change (default) > nl_typedef_blk_end = 0 # number > > # The maximum consecutive newlines within a block of typedefs > # 0 = No change (default) > nl_typedef_blk_in = 0 # number > > # The number of newlines before a block of variable definitions not at the top of a function body > # 0 = No change (default) > nl_var_def_blk_start = 0 # number > > # The number of newlines after a block of variable definitions not at the top of a function body > # 0 = No change (default) > nl_var_def_blk_end = 0 # number > > # The maximum consecutive newlines within a block of variable definitions > # 0 = No change (default) > nl_var_def_blk_in = 0 # number > 766c956 < nl_struct_brace = remove # ignore/add/remove/force --- > nl_struct_brace = ignore # ignore/add/remove/force 769c959 < nl_union_brace = remove # ignore/add/remove/force --- > nl_union_brace = ignore # ignore/add/remove/force 772c962 < nl_if_brace = remove # ignore/add/remove/force --- > nl_if_brace = ignore # ignore/add/remove/force 775c965 < nl_brace_else = force # ignore/add/remove/force --- > nl_brace_else = ignore # ignore/add/remove/force 779c969 < nl_elseif_brace = remove # ignore/add/remove/force --- > nl_elseif_brace = ignore # ignore/add/remove/force 782c972 < nl_else_brace = remove # ignore/add/remove/force --- > nl_else_brace = ignore # ignore/add/remove/force 785c975 < nl_else_if = add # ignore/add/remove/force --- > nl_else_if = ignore # ignore/add/remove/force 788c978 < nl_brace_finally = add # ignore/add/remove/force --- > nl_brace_finally = ignore # ignore/add/remove/force 791c981 < nl_finally_brace = remove # ignore/add/remove/force --- > nl_finally_brace = ignore # ignore/add/remove/force 794c984 < nl_try_brace = remove # ignore/add/remove/force --- > nl_try_brace = ignore # ignore/add/remove/force 797c987 < nl_getset_brace = remove # ignore/add/remove/force --- > nl_getset_brace = ignore # ignore/add/remove/force 800c990 < nl_for_brace = remove # ignore/add/remove/force --- > nl_for_brace = ignore # ignore/add/remove/force 803c993 < nl_catch_brace = remove # ignore/add/remove/force --- > nl_catch_brace = ignore # ignore/add/remove/force 806c996 < nl_brace_catch = force # ignore/add/remove/force --- > nl_brace_catch = ignore # ignore/add/remove/force 809c999,1011 < nl_while_brace = remove # ignore/add/remove/force --- > nl_while_brace = ignore # ignore/add/remove/force > > # Add or remove newline between 'scope (x)' and '{' (D) > nl_scope_brace = ignore # ignore/add/remove/force > > # Add or remove newline between 'unittest' and '{' (D) > nl_unittest_brace = ignore # ignore/add/remove/force > > # Add or remove newline between 'version (x)' and '{' (D) > nl_version_brace = ignore # ignore/add/remove/force > > # Add or remove newline between 'using' and '{' > nl_using_brace = ignore # ignore/add/remove/force 816c1018 < nl_do_brace = remove # ignore/add/remove/force --- > nl_do_brace = ignore # ignore/add/remove/force 819c1021 < nl_brace_while = add # ignore/add/remove/force --- > nl_brace_while = ignore # ignore/add/remove/force 822c1024 < nl_switch_brace = remove # ignore/add/remove/force --- > nl_switch_brace = ignore # ignore/add/remove/force 839a1042,1044 > # Add or remove a newline between a case ':' and '{'. Overrides nl_after_case. > nl_case_colon_brace = ignore # ignore/add/remove/force > 841c1046 < nl_namespace_brace = remove # ignore/add/remove/force --- > nl_namespace_brace = ignore # ignore/add/remove/force 847c1052 < nl_class_brace = remove # ignore/add/remove/force --- > nl_class_brace = ignore # ignore/add/remove/force 867c1072,1075 < nl_func_paren = remove # ignore/add/remove/force --- > nl_func_paren = ignore # ignore/add/remove/force > > # Add or remove newline between a function name and the opening '(' in the definition > nl_func_def_paren = ignore # ignore/add/remove/force 870c1078,1081 < nl_func_decl_start = remove # ignore/add/remove/force --- > nl_func_decl_start = ignore # ignore/add/remove/force > > # Add or remove newline after '(' in a function definition > nl_func_def_start = ignore # ignore/add/remove/force 872c1083 < # Overrides nl_func_decl_start when there is only one paramter. --- > # Overrides nl_func_decl_start when there is only one parameter. 874a1086,1088 > # Overrides nl_func_def_start when there is only one parameter. > nl_func_def_start_single = ignore # ignore/add/remove/force > 877a1092,1094 > # Add or remove newline after each ',' in a function definition > nl_func_def_args = ignore # ignore/add/remove/force > 881c1098,1101 < # Overrides nl_func_decl_end when there is only one paramter. --- > # Add or remove newline before the ')' in a function definition > nl_func_def_end = ignore # ignore/add/remove/force > > # Overrides nl_func_decl_end when there is only one parameter. 883a1104,1106 > # Overrides nl_func_def_end when there is only one parameter. > nl_func_def_end_single = ignore # ignore/add/remove/force > 887,888c1110,1111 < # Add or remove newline between function signature and '{' < nl_fdef_brace = remove # ignore/add/remove/force --- > # Add or remove newline between '()' in a function definition. > nl_func_def_empty = ignore # ignore/add/remove/force 890,891c1113,1118 < # Whether to put a newline after 'return' statement < nl_after_return = false # false/true --- > # Whether to put each OC message parameter on a separate line > # See nl_oc_msg_leave_one_liner > nl_oc_msg_args = false # false/true > > # Add or remove newline between function signature and '{' > nl_fdef_brace = ignore # ignore/add/remove/force 897c1124 < nl_after_semicolon = true # false/true --- > nl_after_semicolon = false # false/true 901c1128 < nl_after_brace_open = true # false/true --- > nl_after_brace_open = false # false/true 918a1146,1153 > # Whether to put a newline after a virtual brace close. > # Would add a newline before return in: 'if (foo) a++; return;' > nl_after_vbrace_close = false # false/true > > # Control the newline between the close brace and 'b' in: 'struct { int a; } b;' > # Affects enums, unions, and structures. If set to ignore, uses nl_after_brace_close > nl_brace_struct_var = ignore # ignore/add/remove/force > 925c1160 < # Add or remove newline before 'if' --- > # Add or remove blank line before 'if' 928c1163 < # Add or remove newline after 'if' --- > # Add or remove blank line after 'if' statement 931c1166 < # Add or remove newline before 'for' --- > # Add or remove blank line before 'for' 934c1169 < # Add or remove newline after 'for' --- > # Add or remove blank line after 'for' statement 937c1172 < # Add or remove newline before 'while' --- > # Add or remove blank line before 'while' 940c1175 < # Add or remove newline after 'while' --- > # Add or remove blank line after 'while' statement 943c1178 < # Add or remove newline before 'switch' --- > # Add or remove blank line before 'switch' 946c1181 < # Add or remove newline after 'switch' --- > # Add or remove blank line after 'switch' statement 949c1184 < # Add or remove newline before 'do' --- > # Add or remove blank line before 'do' 952c1187 < # Add or remove newline after 'do' --- > # Add or remove blank line after 'do/while' statement 958a1194 > # (lower priority than 'eat_blanks_before_close_brace') 982c1218 < pos_arith = ignore # ignore/lead/trail --- > pos_arith = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force 986c1222 < pos_assign = ignore # ignore/lead/trail --- > pos_assign = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force 989c1225 < pos_bool = ignore # ignore/lead/trail --- > pos_bool = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force 992c1228 < pos_compare = ignore # ignore/lead/trail --- > pos_compare = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force 995c1231 < pos_conditional = ignore # ignore/lead/trail --- > pos_conditional = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force 998c1234 < pos_comma = ignore # ignore/lead/trail --- > pos_comma = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force 1001c1237 < pos_class_comma = ignore # ignore/lead/trail --- > pos_class_comma = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force 1004c1240 < pos_class_colon = ignore # ignore/lead/trail --- > pos_class_colon = ignore # ignore/join/lead/lead_break/lead_force/trail/trail_break/trail_force 1018a1255,1257 > # Whether to split lines as close to code_width as possible and ignore some groupings > ls_code_width = false # false/true > 1033c1272,1275 < nl_after_func_body = 2 # number --- > nl_after_func_body = 0 # number > > # The number of newlines after '}' of a multi-line function body in a class declaration > nl_after_func_body_class = 0 # number 1036c1278 < nl_after_func_body_one_liner = 1 # number --- > nl_after_func_body_one_liner = 0 # number 1050c1292 < # Whether to force a newline after a mulit-line comment. --- > # Whether to force a newline after a multi-line comment. 1052a1295,1300 > # The number of newlines after '}' or ';' of a struct/enum/union definition > nl_after_struct = 0 # number > > # The number of newlines after '}' or ';' of a class definition > nl_after_class = 0 # number > 1060c1308 < nl_after_access_spec = 1 # number --- > nl_after_access_spec = 0 # number 1077a1326,1328 > # Add or remove newline between C# property and the '{' > nl_property_brace = ignore # ignore/add/remove/force > 1082c1333,1352 < eat_blanks_before_close_brace = true # false/true --- > eat_blanks_before_close_brace = false # false/true > > # How aggressively to remove extra newlines not in preproc. > # 0: No change > # 1: Remove most newlines not handled by other config > # 2: Remove all newlines and reformat completely by config > nl_remove_extra_newlines = 0 # number > > # Whether to put a blank line before 'return' statements, unless after an open brace. > nl_before_return = false # false/true > > # Whether to put a blank line after 'return' statements, unless followed by a close brace. > nl_after_return = false # false/true > > # Whether to put a newline after a Java annotation statement. > # Only affects annotations that are after a newline. > nl_after_annotation = ignore # ignore/add/remove/force > > # Controls the newline between two annotations. > nl_between_annotation = ignore # ignore/add/remove/force 1089c1359 < mod_full_brace_do = force # ignore/add/remove/force --- > mod_full_brace_do = ignore # ignore/add/remove/force 1092c1362 < mod_full_brace_for = force # ignore/add/remove/force --- > mod_full_brace_for = ignore # ignore/add/remove/force 1098c1368 < mod_full_brace_if = force # ignore/add/remove/force --- > mod_full_brace_if = ignore # ignore/add/remove/force 1108c1378,1381 < mod_full_brace_while = add # ignore/add/remove/force --- > mod_full_brace_while = ignore # ignore/add/remove/force > > # Add or remove braces on single-line 'using ()' statement > mod_full_brace_using = ignore # ignore/add/remove/force 1131c1404 < # the #else, a comment will be added. --- > # the #endif, a comment will be added. 1135c1408 < # the #endif, a comment will be added. --- > # the #else, a comment will be added. 1171c1444 < # If false, disable all multi-line comment changes, including cmt_width and leading chars. --- > # If false, disable all multi-line comment changes, including cmt_width. keyword substitution, and leading chars. 1173c1446 < cmt_indent_multi = false # false/true --- > cmt_indent_multi = true # false/true 1225a1499,1502 > # The filename that contains text to insert before a Obj-C message specification if the method isn't preceeded 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 > 1228c1505 < # Affects cmt_insert_func_header and cmt_insert_class_header. --- > # Affects cmt_insert_oc_msg_header, cmt_insert_func_header and cmt_insert_class_header. 1302,1303d1578 < < # EOF: ADHcrusti.cfg