summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/if_lua.c5
-rw-r--r--src/if_ruby.c6
-rw-r--r--src/version.c2
3 files changed, 7 insertions, 6 deletions
diff --git a/src/if_lua.c b/src/if_lua.c
index 3062de8c..d3c6a422 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 <stdio.h>
-#include <string.h>
+#include "vim.h"
+
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
-#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 0f108a1f..a45269d6 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 <stdio.h>
-#include <string.h>
-
#ifdef HAVE_CONFIG_H
# include "auto/config.h"
#endif
+#include <stdio.h>
+#include <string.h>
+
#ifdef _WIN32
# if !defined(DYNAMIC_RUBY_VER) || (DYNAMIC_RUBY_VER < 18)
# define NT
diff --git a/src/version.c b/src/version.c
index 7e17f43e..abe414ba 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 101,
+/**/
100,
/**/
99,