From: Bram Moolenaar Date: Mon, 17 Jan 2011 18:53:27 +0000 (+0100) Subject: updated for version 7.3.101 X-Git-Tag: v7.3.101 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e2793357528c97ca73e76080b2d9bf6f89d6e2da;p=vim updated for version 7.3.101 Problem: ino_t defined with wrong size. Solution: Move including auto/config.h before other includes. (Marius Geminas) --- diff --git a/src/if_lua.c b/src/if_lua.c index 3062de8cf..d3c6a4220 100644 --- a/src/if_lua.c +++ b/src/if_lua.c @@ -9,12 +9,11 @@ * See README.txt for an overview of the Vim source code. */ -#include -#include +#include "vim.h" + #include #include #include -#include "vim.h" /* Only do the following when the feature is enabled. Needed for "make * depend". */ diff --git a/src/if_ruby.c b/src/if_ruby.c index 0f108a1f8..a45269d6e 100644 --- a/src/if_ruby.c +++ b/src/if_ruby.c @@ -11,13 +11,13 @@ * See README.txt for an overview of the Vim source code. */ -#include -#include - #ifdef HAVE_CONFIG_H # include "auto/config.h" #endif +#include +#include + #ifdef _WIN32 # if !defined(DYNAMIC_RUBY_VER) || (DYNAMIC_RUBY_VER < 18) # define NT diff --git a/src/version.c b/src/version.c index 7e17f43e0..abe414ba0 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 101, /**/ 100, /**/