0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

Added Lua interfae. (Luis Carvalho)

This commit is contained in:
Bram Moolenaar
2010-07-14 23:23:17 +02:00
parent 26dcc7e8df
commit 0ba042961f
35 changed files with 1835 additions and 21 deletions

View File

@@ -595,6 +595,9 @@ free_buffer(buf)
buf_T *buf;
{
free_buffer_stuff(buf, TRUE);
#ifdef FEAT_LUA
lua_buffer_free(buf);
#endif
#ifdef FEAT_MZSCHEME
mzscheme_buffer_free(buf);
#endif