mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.2.0654: building with Python fails
Problem: Building with Python fails. Solution: Add missing argument.
This commit is contained in:
@@ -2934,7 +2934,7 @@ FunctionNew(PyTypeObject *subtype, char_u *name, int argc, typval_T *argv,
|
|||||||
|
|
||||||
if (isdigit(*name))
|
if (isdigit(*name))
|
||||||
{
|
{
|
||||||
if (!translated_function_exists(name))
|
if (!translated_function_exists(name, FALSE))
|
||||||
{
|
{
|
||||||
PyErr_FORMAT(PyExc_ValueError,
|
PyErr_FORMAT(PyExc_ValueError,
|
||||||
N_("unnamed function %s does not exist"), name);
|
N_("unnamed function %s does not exist"), name);
|
||||||
|
@@ -746,6 +746,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 */
|
||||||
|
/**/
|
||||||
|
654,
|
||||||
/**/
|
/**/
|
||||||
653,
|
653,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user