1
0
forked from aniani/vim

patch 8.0.1709: some non-C89 code may slip through

Problem:    Some non-C89 code may slip through.
Solution:   Enforce C89 in configure. Fix detected problems. (James McCoy,
            closes #2735)
This commit is contained in:
Bram Moolenaar
2018-04-14 14:37:07 +02:00
parent 78a16b0f2a
commit 2e324950b8
6 changed files with 122 additions and 12 deletions

View File

@@ -815,7 +815,7 @@ python3_end(void)
#endif
if (Py_IsInitialized())
{
// acquire lock before finalizing
/* acquire lock before finalizing */
PyGILState_Ensure();
Py_Finalize();