mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 22:48:34 +00:00
refactor: saner options for uncrustify #16196
* refactor: general good option changes sp_deref = remove sp_not = remove sp_inv = remove sp_inside_paren_cast = remove mod_remove_duplicate_include = true sp_after_semi = add sp_after_semi_for = force sp_sizeof_paren = remove nl_return_expr = remove nl_else_brace = remove nl_else_if = remove * refactor: mod_remove_extra_semicolon = true * refactor: nl_max = 3 * refactor: sp_bool = force * refactor: sp_compare = force * refactor: sp_inside_paren = remove * refactor: sp_paren_paren = remove * refactor: sp_inside_sparen = remove * refactor: sp_before_sparen = force * refactor: sp_sign = remove * refactor: sp_addr = remove * refactor: sp_member = remove * refactor: nl_struct_brace = remove * refactor: nl_before_if_closing_paren = remove * refactor: nl_fdef_brace = force * refactor: sp_paren_comma = force * refactor: mod_full_brace_do = add
This commit is contained in:
@@ -135,7 +135,8 @@ static int seen_b_u_curhead;
|
||||
static int seen_b_u_newhead;
|
||||
static int header_count;
|
||||
|
||||
static void u_check_tree(u_header_T *uhp, u_header_T *exp_uh_next, u_header_T *exp_uh_alt_prev) {
|
||||
static void u_check_tree(u_header_T *uhp, u_header_T *exp_uh_next, u_header_T *exp_uh_alt_prev)
|
||||
{
|
||||
u_entry_T *uep;
|
||||
|
||||
if (uhp == NULL) {
|
||||
@@ -182,7 +183,8 @@ static void u_check_tree(u_header_T *uhp, u_header_T *exp_uh_next, u_header_T *e
|
||||
}
|
||||
}
|
||||
|
||||
static void u_check(int newhead_may_be_NULL) {
|
||||
static void u_check(int newhead_may_be_NULL)
|
||||
{
|
||||
seen_b_u_newhead = 0;
|
||||
seen_b_u_curhead = 0;
|
||||
header_count = 0;
|
||||
|
Reference in New Issue
Block a user