From: Bram Moolenaar Date: Wed, 24 Dec 2008 11:43:49 +0000 (+0000) Subject: updated for version 7.2-072 X-Git-Tag: v7.2.072 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=90dca41948543478f096ce6c1c9677edc12d5a07;p=vim updated for version 7.2-072 --- diff --git a/src/if_sniff.c b/src/if_sniff.c index 34b012896..cf38e534c 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 f038f1e8a..5af608339 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, /**/