mirror of
https://github.com/vim/vim.git
synced 2025-10-13 06:54:15 -04:00
updated for version 7.2-072
This commit is contained in:
@@ -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)
|
||||
|
@@ -676,6 +676,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
72,
|
||||
/**/
|
||||
71,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user