]> granicus.if.org Git - vim/commitdiff
Build problem when using all interfaces except Lua.
authorBram Moolenaar <Bram@vim.org>
Sun, 18 Jul 2010 11:58:26 +0000 (13:58 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 18 Jul 2010 11:58:26 +0000 (13:58 +0200)
src/ex_docmd.c

index 8da3a711b505434a47803222f408f80982045b5f..1dab50167445866458d4098da73a3a4eb54e0874 100644 (file)
@@ -129,8 +129,12 @@ static int getargopt __ARGS((exarg_T *eap));
 static int     check_more __ARGS((int, int));
 static linenr_T get_address __ARGS((char_u **, int skip, int to_other_file));
 static void    get_flags __ARGS((exarg_T *eap));
-#if !defined(FEAT_PERL) || !defined(FEAT_PYTHON) || !defined(FEAT_PYTHON3) \
-       || !defined(FEAT_TCL) || !defined(FEAT_RUBY) || !defined(FEAT_MZSCHEME)
+#if !defined(FEAT_PERL) \
+       || !defined(FEAT_PYTHON) || !defined(FEAT_PYTHON3) \
+       || !defined(FEAT_TCL) \
+       || !defined(FEAT_RUBY) \
+       || !defined(FEAT_LUA) \
+       || !defined(FEAT_MZSCHEME)
 # define HAVE_EX_SCRIPT_NI
 static void    ex_script_ni __ARGS((exarg_T *eap));
 #endif