summaryrefslogtreecommitdiffstats
path: root/src/main.c
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/main.c
parent26dcc7e8df8f0f1852752b9107ba4b0408061554 (diff)
Added Lua interfae. (Luis Carvalho)
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index e19084e92f..8f09073776 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1390,6 +1390,9 @@ getout(exitval)
windgoto((int)Rows - 1, 0);
#endif
+#ifdef FEAT_LUA
+ lua_end();
+#endif
#ifdef FEAT_MZSCHEME
mzscheme_end();
#endif