summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-14 23:23:17 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-14 23:23:17 +0200
commit0ba042961f929ff43f977c2ebdba9368f42d9c52 (patch)
tree59220f91eb954e7400bf8846ae8010dd22532029 /src/globals.h
parent26dcc7e8df8f0f1852752b9107ba4b0408061554 (diff)
Added Lua interfae. (Luis Carvalho)
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/globals.h b/src/globals.h
index 4b1bafe7dd..e0be8a683e 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1417,7 +1417,8 @@ EXTERN char_u e_libcall[] INIT(= N_("E364: Library call failed for \"%s()\""));
#endif
#if defined(DYNAMIC_PERL) || defined(DYNAMIC_PYTHON) || defined(DYNAMIC_RUBY) \
|| defined(DYNAMIC_TCL) || defined(DYNAMIC_ICONV) \
- || defined(DYNAMIC_GETTEXT) || defined(DYNAMIC_MZSCHEME)
+ || defined(DYNAMIC_GETTEXT) || defined(DYNAMIC_MZSCHEME) \
+ || defined(DYNAMIC_LUA)
EXTERN char_u e_loadlib[] INIT(= N_("E370: Could not load library %s"));
EXTERN char_u e_loadfunc[] INIT(= N_("E448: Could not load library function %s"));
#endif