diff --git a/src/if_sniff.c b/src/if_sniff.c index 34b0128963..cf38e534cb 100644 --- a/src/if_sniff.c +++ b/src/if_sniff.c @@ -2,8 +2,6 @@ * * if_sniff.c Interface between Vim and SNiFF+ * - * $Id$ - * * See README.txt for an overview of the Vim source code. */ @@ -716,8 +714,10 @@ ConnectToSniffEmacs() #else /* UNIX Version of the Code */ int ToSniffEmacs[2], FromSniffEmacs[2]; - pipe(ToSniffEmacs); - pipe(FromSniffEmacs); + if (pipe(ToSniffEmacs) != 0) + return 1; + if (pipe(FromSniffEmacs) != 0) + return 1; /* fork */ if ((sniffemacs_pid=fork()) == 0) diff --git a/src/version.c b/src/version.c index f038f1e8a8..5af608339d 100644 --- a/src/version.c +++ b/src/version.c @@ -676,6 +676,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 72, /**/ 71, /**/