|
Karsten Hopp |
ee5cf3 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
ee5cf3 |
Subject: Patch 7.3.303
|
|
Karsten Hopp |
ee5cf3 |
Fcc: outbox
|
|
Karsten Hopp |
ee5cf3 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
ee5cf3 |
Mime-Version: 1.0
|
|
Karsten Hopp |
ee5cf3 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
ee5cf3 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
ee5cf3 |
------------
|
|
Karsten Hopp |
ee5cf3 |
|
|
Karsten Hopp |
ee5cf3 |
Patch 7.3.303 (after 7.3.296)
|
|
Karsten Hopp |
ee5cf3 |
Problem: Compilation error.
|
|
Karsten Hopp |
ee5cf3 |
Solution: Correct return type from int to pid_t. (Danek Duvall)
|
|
Karsten Hopp |
ee5cf3 |
Files: src/os_unix.c
|
|
Karsten Hopp |
ee5cf3 |
|
|
Karsten Hopp |
ee5cf3 |
|
|
Karsten Hopp |
ee5cf3 |
*** ../vim-7.3.302/src/os_unix.c 2011-09-07 15:04:26.000000000 +0200
|
|
Karsten Hopp |
ee5cf3 |
--- src/os_unix.c 2011-09-08 20:47:47.000000000 +0200
|
|
Karsten Hopp |
ee5cf3 |
***************
|
|
Karsten Hopp |
ee5cf3 |
*** 159,165 ****
|
|
Karsten Hopp |
ee5cf3 |
#else
|
|
Karsten Hopp |
ee5cf3 |
typedef int waitstatus;
|
|
Karsten Hopp |
ee5cf3 |
#endif
|
|
Karsten Hopp |
ee5cf3 |
! static int wait4pid __ARGS((pid_t, waitstatus *));
|
|
Karsten Hopp |
ee5cf3 |
|
|
Karsten Hopp |
ee5cf3 |
static int WaitForChar __ARGS((long));
|
|
Karsten Hopp |
ee5cf3 |
#if defined(__BEOS__)
|
|
Karsten Hopp |
ee5cf3 |
--- 159,165 ----
|
|
Karsten Hopp |
ee5cf3 |
#else
|
|
Karsten Hopp |
ee5cf3 |
typedef int waitstatus;
|
|
Karsten Hopp |
ee5cf3 |
#endif
|
|
Karsten Hopp |
ee5cf3 |
! static pid_t wait4pid __ARGS((pid_t, waitstatus *));
|
|
Karsten Hopp |
ee5cf3 |
|
|
Karsten Hopp |
ee5cf3 |
static int WaitForChar __ARGS((long));
|
|
Karsten Hopp |
ee5cf3 |
#if defined(__BEOS__)
|
|
Karsten Hopp |
ee5cf3 |
*** ../vim-7.3.302/src/version.c 2011-09-08 23:22:35.000000000 +0200
|
|
Karsten Hopp |
ee5cf3 |
--- src/version.c 2011-09-08 23:23:43.000000000 +0200
|
|
Karsten Hopp |
ee5cf3 |
***************
|
|
Karsten Hopp |
ee5cf3 |
*** 711,712 ****
|
|
Karsten Hopp |
ee5cf3 |
--- 711,714 ----
|
|
Karsten Hopp |
ee5cf3 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
ee5cf3 |
+ /**/
|
|
Karsten Hopp |
ee5cf3 |
+ 303,
|
|
Karsten Hopp |
ee5cf3 |
/**/
|
|
Karsten Hopp |
ee5cf3 |
|
|
Karsten Hopp |
ee5cf3 |
--
|
|
Karsten Hopp |
ee5cf3 |
For humans, honesty is a matter of degree. Engineers are always honest in
|
|
Karsten Hopp |
ee5cf3 |
matters of technology and human relationships. That's why it's a good idea
|
|
Karsten Hopp |
ee5cf3 |
to keep engineers away from customers, romantic interests, and other people
|
|
Karsten Hopp |
ee5cf3 |
who can't handle the truth.
|
|
Karsten Hopp |
ee5cf3 |
(Scott Adams - The Dilbert principle)
|
|
Karsten Hopp |
ee5cf3 |
|
|
Karsten Hopp |
ee5cf3 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
ee5cf3 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
ee5cf3 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
ee5cf3 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|