0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 9.1.0581: Various lines are indented inconsistently

Problem:  style: Various lines are indented inconsistently
Solution: Retab these lines and correct some comments.
          (zeertzjq)

closes: #15259

Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
zeertzjq
2024-07-14 10:20:20 +02:00
committed by Christian Brabandt
parent 90a800274d
commit d9be94cf03
22 changed files with 55 additions and 54 deletions

View File

@@ -3101,7 +3101,7 @@ class_member_lookup(class_T *cl, char_u *name, size_t namelen, int *idx)
{
ret_m = m;
ret_idx = i;
break;
break;
}
}
if (idx != NULL)
@@ -3184,11 +3184,11 @@ object_member_lookup(class_T *cl, char_u *name, size_t namelen, int *idx)
}
}
else if (STRCMP(name, m->ocm_name) == 0)
{
{
ret_m = m;
ret_idx = i;
break;
}
break;
}
}
if (idx != NULL)
*idx = ret_idx;
@@ -3684,7 +3684,7 @@ method_not_found_msg(class_T *cl, vartype_T v_type, char_u *name, size_t len)
}
else
semsg(_(e_method_not_found_on_class_str_str), method_name,
cl->class_name);
cl->class_name);
vim_free(method_name);
}