commit | a14bb7e1132377af60910402f1a9e4796297f5df | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Apr 28 00:02:41 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Apr 28 00:02:41 2020 +0200 |
tree | f7ebcef31c09c9483924db5019f9febb592f9af3 | |
parent | 03afdcf1f449d23c9b6bc56d8b61f31dd4e11836 [diff] [blame] |
patch 8.2.0654: building with Python fails Problem: Building with Python fails. Solution: Add missing argument.
diff --git a/src/if_py_both.h b/src/if_py_both.h index 5a878bd..d6a5b11 100644 --- a/src/if_py_both.h +++ b/src/if_py_both.h
@@ -2934,7 +2934,7 @@ if (isdigit(*name)) { - if (!translated_function_exists(name)) + if (!translated_function_exists(name, FALSE)) { PyErr_FORMAT(PyExc_ValueError, N_("unnamed function %s does not exist"), name);