diff src/if_python3.c @ 3032:e4f3fa1a474e v7.3.288

updated for version 7.3.288 Problem: has('python') may give an error message for not being able to load the library after using python3. Solution: Only give the error when the verbose argument is true.
author Bram Moolenaar <bram@vim.org>
date Sun, 28 Aug 2011 16:00:19 +0200
parents f909f4f0f38c
children 880b7dd69331
line wrap: on
line diff
--- a/src/if_python3.c
+++ b/src/if_python3.c
@@ -367,7 +367,8 @@ py3_runtime_link_init(char *libname, int
      * standard C extension libraries of one or both python versions. */
     if (python_loaded())
     {
-	EMSG(_("E837: This Vim cannot execute :py3 after using :python"));
+	if (verbose)
+	    EMSG(_("E837: This Vim cannot execute :py3 after using :python"));
 	return FAIL;
     }
 # endif