1
0
forked from aniani/vim

updated for version 7.1a

This commit is contained in:
Bram Moolenaar
2007-05-05 17:54:07 +00:00
parent d5ab34bd5e
commit 9964e468c0
206 changed files with 20219 additions and 7404 deletions

View File

@@ -99,7 +99,9 @@ main(void)
*/
retval = system(p);
if (retval != 0)
if (retval == -1)
perror("vimrun system(): ");
else if (retval != 0)
printf("shell returned %d\n", retval);
if (!silent)