comparison src/if_lua.c @ 2683:0c7d6d01e058 v7.3.101

updated for version 7.3.101 Problem: ino_t defined with wrong size. Solution: Move including auto/config.h before other includes. (Marius Geminas)
author Bram Moolenaar <bram@vim.org>
date Mon, 17 Jan 2011 19:53:27 +0100
parents fa5dee44df3f
children 92a181a1cec3
comparison
equal deleted inserted replaced
2682:35edf814f223 2683:0c7d6d01e058
7 * Do ":help uganda" in Vim to read copying and usage conditions. 7 * Do ":help uganda" in Vim to read copying and usage conditions.
8 * Do ":help credits" in Vim to see a list of people who contributed. 8 * Do ":help credits" in Vim to see a list of people who contributed.
9 * See README.txt for an overview of the Vim source code. 9 * See README.txt for an overview of the Vim source code.
10 */ 10 */
11 11
12 #include <stdio.h> 12 #include "vim.h"
13 #include <string.h> 13
14 #include <lua.h> 14 #include <lua.h>
15 #include <lualib.h> 15 #include <lualib.h>
16 #include <lauxlib.h> 16 #include <lauxlib.h>
17 #include "vim.h"
18 17
19 /* Only do the following when the feature is enabled. Needed for "make 18 /* Only do the following when the feature is enabled. Needed for "make
20 * depend". */ 19 * depend". */
21 #if defined(FEAT_LUA) || defined(PROTO) 20 #if defined(FEAT_LUA) || defined(PROTO)
22 21