mirror of
https://github.com/vim/vim.git
synced 2025-10-14 07:04:10 -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+
|
* if_sniff.c Interface between Vim and SNiFF+
|
||||||
*
|
*
|
||||||
* $Id$
|
|
||||||
*
|
|
||||||
* See README.txt for an overview of the Vim source code.
|
* See README.txt for an overview of the Vim source code.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -716,8 +714,10 @@ ConnectToSniffEmacs()
|
|||||||
#else /* UNIX Version of the Code */
|
#else /* UNIX Version of the Code */
|
||||||
int ToSniffEmacs[2], FromSniffEmacs[2];
|
int ToSniffEmacs[2], FromSniffEmacs[2];
|
||||||
|
|
||||||
pipe(ToSniffEmacs);
|
if (pipe(ToSniffEmacs) != 0)
|
||||||
pipe(FromSniffEmacs);
|
return 1;
|
||||||
|
if (pipe(FromSniffEmacs) != 0)
|
||||||
|
return 1;
|
||||||
|
|
||||||
/* fork */
|
/* fork */
|
||||||
if ((sniffemacs_pid=fork()) == 0)
|
if ((sniffemacs_pid=fork()) == 0)
|
||||||
|
@@ -676,6 +676,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
72,
|
||||||
/**/
|
/**/
|
||||||
71,
|
71,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user