diff src/if_python3.c @ 13674:1feeefd8cddb v8.0.1709

patch 8.0.1709: some non-C89 code may slip through commit https://github.com/vim/vim/commit/2e324950b83fcdf60843b54a6a339183370f338a Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 14 14:37:07 2018 +0200 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)
author Christian Brabandt <cb@256bit.org>
date Sat, 14 Apr 2018 14:45:06 +0200
parents 417a01a1aaaa
children 76a65058766f
line wrap: on
line diff
--- a/src/if_python3.c
+++ b/src/if_python3.c
@@ -815,7 +815,7 @@ python3_end(void)
 #endif
     if (Py_IsInitialized())
     {
-	// acquire lock before finalizing
+	/* acquire lock before finalizing */
 	PyGILState_Ensure();
 
 	Py_Finalize();