mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -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[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1795,
|
||||
/**/
|
||||
1794,
|
||||
/**/
|
||||
|
@@ -96,8 +96,8 @@ parse_member(
|
||||
fill_evalarg_from_eap(&evalarg, eap, FALSE);
|
||||
(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
|
||||
// set when the object is instantiated.
|
||||
// No type specified for the member. Set it to "any" and the correct
|
||||
// type will be set when the object is instantiated.
|
||||
if (type == NULL)
|
||||
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
|
||||
* matches the class "other_cl".
|
||||
* Return TRUE when the class "cl", its base class or one of the implemented
|
||||
* interfaces matches the class "other_cl".
|
||||
*/
|
||||
int
|
||||
class_instance_of(class_T *cl, class_T *other_cl)
|
||||
|
Reference in New Issue
Block a user