diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-17 21:19:38 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-17 21:19:38 +0200 |
commit | bd5e15fd5c7e42505d6b0e20f4198d24fc7e219d (patch) | |
tree | 70e3f86ae76494fc094bbe25c58ba2befbcf4872 /src/buffer.c | |
parent | 02c707a87da1b0f78d10a689cc03941a2e8acbc6 (diff) | |
download | vim-bd5e15fd5c7e42505d6b0e20f4198d24fc7e219d.zip |
Added support for Python 3. (Roland Puntaier)
Diffstat (limited to 'src/buffer.c')
-rw-r--r-- | src/buffer.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c index 1a3497e74..e7fecd7da 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -607,6 +607,9 @@ free_buffer(buf) #ifdef FEAT_PYTHON python_buffer_free(buf); #endif +#ifdef FEAT_PYTHON3 + python3_buffer_free(buf); +#endif #ifdef FEAT_RUBY ruby_buffer_free(buf); #endif |