]> granicus.if.org Git - vim/commitdiff
updated for version 7.2-072 v7.2.072
authorBram Moolenaar <Bram@vim.org>
Wed, 24 Dec 2008 11:43:49 +0000 (11:43 +0000)
committerBram Moolenaar <Bram@vim.org>
Wed, 24 Dec 2008 11:43:49 +0000 (11:43 +0000)
src/if_sniff.c
src/version.c

index 34b01289638fc836101719d05f6970d91e1f6007..cf38e534cbc867aafa3e7f3dc4f3286347239dc7 100644 (file)
@@ -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)
index f038f1e8a8806e760ba92d528784fe1392d581c3..5af608339dea41a302490101698e9b888ac4a910 100644 (file)
@@ -676,6 +676,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    72,
 /**/
     71,
 /**/