|
Karsten Hopp |
2111e7 |
To: vim-dev@vim.org
|
|
Karsten Hopp |
2111e7 |
Subject: Patch 7.1.291
|
|
Karsten Hopp |
2111e7 |
Fcc: outbox
|
|
Karsten Hopp |
2111e7 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
2111e7 |
Mime-Version: 1.0
|
|
Karsten Hopp |
2111e7 |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
2111e7 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
2111e7 |
------------
|
|
Karsten Hopp |
2111e7 |
|
|
Karsten Hopp |
2111e7 |
Patch 7.1.291 (after 7.1.288)
|
|
Karsten Hopp |
2111e7 |
Problem: Compiler warning.
|
|
Karsten Hopp |
2111e7 |
Solution: Change 50 to 50L.
|
|
Karsten Hopp |
2111e7 |
Files: src/if_cscope.c
|
|
Karsten Hopp |
2111e7 |
|
|
Karsten Hopp |
2111e7 |
|
|
Karsten Hopp |
2111e7 |
*** ../vim-7.1.290/src/if_cscope.c Tue Apr 1 14:30:18 2008
|
|
Karsten Hopp |
2111e7 |
--- src/if_cscope.c Tue Apr 1 20:56:02 2008
|
|
Karsten Hopp |
2111e7 |
***************
|
|
Karsten Hopp |
2111e7 |
*** 2163,2169 ****
|
|
Karsten Hopp |
2111e7 |
waitpid_errno = errno;
|
|
Karsten Hopp |
2111e7 |
if (pid != 0)
|
|
Karsten Hopp |
2111e7 |
break; /* break unless the process is still running */
|
|
Karsten Hopp |
2111e7 |
! mch_delay(50, FALSE); /* sleep 50 ms */
|
|
Karsten Hopp |
2111e7 |
}
|
|
Karsten Hopp |
2111e7 |
# endif
|
|
Karsten Hopp |
2111e7 |
/*
|
|
Karsten Hopp |
2111e7 |
--- 2163,2169 ----
|
|
Karsten Hopp |
2111e7 |
waitpid_errno = errno;
|
|
Karsten Hopp |
2111e7 |
if (pid != 0)
|
|
Karsten Hopp |
2111e7 |
break; /* break unless the process is still running */
|
|
Karsten Hopp |
2111e7 |
! mch_delay(50L, FALSE); /* sleep 50 ms */
|
|
Karsten Hopp |
2111e7 |
}
|
|
Karsten Hopp |
2111e7 |
# endif
|
|
Karsten Hopp |
2111e7 |
/*
|
|
Karsten Hopp |
2111e7 |
***************
|
|
Karsten Hopp |
2111e7 |
*** 2198,2204 ****
|
|
Karsten Hopp |
2111e7 |
alive = FALSE; /* cscope process no longer exists */
|
|
Karsten Hopp |
2111e7 |
break;
|
|
Karsten Hopp |
2111e7 |
}
|
|
Karsten Hopp |
2111e7 |
! mch_delay(50, FALSE); /* sleep 50ms */
|
|
Karsten Hopp |
2111e7 |
}
|
|
Karsten Hopp |
2111e7 |
}
|
|
Karsten Hopp |
2111e7 |
if (alive)
|
|
Karsten Hopp |
2111e7 |
--- 2198,2204 ----
|
|
Karsten Hopp |
2111e7 |
alive = FALSE; /* cscope process no longer exists */
|
|
Karsten Hopp |
2111e7 |
break;
|
|
Karsten Hopp |
2111e7 |
}
|
|
Karsten Hopp |
2111e7 |
! mch_delay(50L, FALSE); /* sleep 50ms */
|
|
Karsten Hopp |
2111e7 |
}
|
|
Karsten Hopp |
2111e7 |
}
|
|
Karsten Hopp |
2111e7 |
if (alive)
|
|
Karsten Hopp |
2111e7 |
*** ../vim-7.1.290/src/version.c Tue Apr 1 17:13:54 2008
|
|
Karsten Hopp |
2111e7 |
--- src/version.c Tue Apr 1 20:58:11 2008
|
|
Karsten Hopp |
2111e7 |
***************
|
|
Karsten Hopp |
2111e7 |
*** 668,669 ****
|
|
Karsten Hopp |
2111e7 |
--- 668,671 ----
|
|
Karsten Hopp |
2111e7 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
2111e7 |
+ /**/
|
|
Karsten Hopp |
2111e7 |
+ 291,
|
|
Karsten Hopp |
2111e7 |
/**/
|
|
Karsten Hopp |
2111e7 |
|
|
Karsten Hopp |
2111e7 |
--
|
|
Karsten Hopp |
2111e7 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
2111e7 |
210. When you get a divorce, you don't care about who gets the children,
|
|
Karsten Hopp |
2111e7 |
but discuss endlessly who can use the email address.
|
|
Karsten Hopp |
2111e7 |
|
|
Karsten Hopp |
2111e7 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
2111e7 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
2111e7 |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
2111e7 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|