mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 9.0.1795: Indentation issues
Problem: Indentation issues Solution: Fix code indentation issues. closes: #12906 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
This commit is contained in:
committed by
Christian Brabandt
parent
74e1dada41
commit
d4e4ecbb37
@@ -699,6 +699,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1795,
|
||||||
/**/
|
/**/
|
||||||
1794,
|
1794,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -96,8 +96,8 @@ parse_member(
|
|||||||
fill_evalarg_from_eap(&evalarg, eap, FALSE);
|
fill_evalarg_from_eap(&evalarg, eap, FALSE);
|
||||||
(void)skip_expr_concatenate(&init_arg, &expr_start, &expr_end, &evalarg);
|
(void)skip_expr_concatenate(&init_arg, &expr_start, &expr_end, &evalarg);
|
||||||
|
|
||||||
// No type specified for the member. Set it to "any" and the correct type will be
|
// No type specified for the member. Set it to "any" and the correct
|
||||||
// set when the object is instantiated.
|
// type will be set when the object is instantiated.
|
||||||
if (type == NULL)
|
if (type == NULL)
|
||||||
type = &t_any;
|
type = &t_any;
|
||||||
|
|
||||||
@@ -1914,8 +1914,8 @@ object_free_nonref(int copyID)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Return TRUE when the class "cl", its base class or one of the implemented interfaces
|
* Return TRUE when the class "cl", its base class or one of the implemented
|
||||||
* matches the class "other_cl".
|
* interfaces matches the class "other_cl".
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
class_instance_of(class_T *cl, class_T *other_cl)
|
class_instance_of(class_T *cl, class_T *other_cl)
|
||||||
|
Reference in New Issue
Block a user