diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-14 23:23:17 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-14 23:23:17 +0200 |
commit | 0ba042961f929ff43f977c2ebdba9368f42d9c52 (patch) | |
tree | 59220f91eb954e7400bf8846ae8010dd22532029 /src/globals.h | |
parent | 26dcc7e8df8f0f1852752b9107ba4b0408061554 (diff) | |
download | vim-git-0ba042961f929ff43f977c2ebdba9368f42d9c52.tar.gz |
Added Lua interfae. (Luis Carvalho)
Diffstat (limited to 'src/globals.h')
-rw-r--r-- | src/globals.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/globals.h b/src/globals.h index 4b1bafe7d..e0be8a683 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 |