commit | 2e324950b83fcdf60843b54a6a339183370f338a | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Apr 14 14:37:07 2018 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Apr 14 14:37:07 2018 +0200 |
tree | c80a94cf7de8b07ad87c83d2188e83620df86cb0 | |
parent | 78a16b0f2a142aae1fdc96c50ab0f25194d0e755 [diff] [blame] |
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)
diff --git a/src/if_python3.c b/src/if_python3.c index b885deb..4360fe4 100644 --- a/src/if_python3.c +++ b/src/if_python3.c
@@ -815,7 +815,7 @@ #endif if (Py_IsInitialized()) { - // acquire lock before finalizing + /* acquire lock before finalizing */ PyGILState_Ensure(); Py_Finalize();