Skip to content

Commit

Permalink
patch 9.0.1778: if_py_both: code-style issue
Browse files Browse the repository at this point in the history
Problem:  if_py_both: code-style issue
Solution: add space

Signed-off-by: Christian Brabandt <[email protected]>
  • Loading branch information
chrisbra committed Aug 20, 2023
1 parent be07caa commit 75dc1ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/if_py_both.h
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ PyObject* Vim_PyObject_New(PyTypeObject *type, size_t objsize)
Py_XDECREF(module); \
Py_XDECREF(full); \
Py_XDECREF(full_bytes); \
} while(0)
} while (0)

# define PyList_GET_ITEM(list, i) PyList_GetItem(list, i)
# define PyList_GET_SIZE(o) PyList_Size(o)
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -699,6 +699,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1778,
/**/
1777,
/**/
Expand Down

0 comments on commit 75dc1ed

Please sign in to comment.