forked from aniani/vim
updated for version 7.1a
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user