diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-08-30 09:47:38 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-08-30 09:47:38 +0000 |
commit | 1a3d086c84dad1f52b623cda1bfe36d88d8cfd9a (patch) | |
tree | 9774fd2613f9294ddf2d19ddaa4dc22970264181 | |
parent | 7d61a92145b4a093ec8e45df2c9d9b1bd2782366 (diff) | |
download | vim-git-1a3d086c84dad1f52b623cda1bfe36d88d8cfd9a.tar.gz |
updated for version 7.1-090v7.1.090
-rw-r--r-- | src/os_unix.c | 5 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index d0a1c521b..c062ad1bf 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -753,7 +753,8 @@ init_signal_stack() if (signal_stack != NULL) { # ifdef HAVE_SIGALTSTACK -# ifdef __APPLE__ +# if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \ + || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040) /* missing prototype. Adding it to osdef?.h.in doesn't work, because * "struct sigaltstack" needs to be declared. */ extern int sigaltstack __ARGS((const struct sigaltstack *ss, struct sigaltstack *oss)); @@ -5688,7 +5689,7 @@ gpm_open() /* * Closes connection to gpm - * returns non-zero if connection succesfully closed + * returns non-zero if connection successfully closed */ static void gpm_close() diff --git a/src/version.c b/src/version.c index 067f8e51d..cae6b52d7 100644 --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 90, +/**/ 89, /**/ 88, |