commit | bd5e15fd5c7e42505d6b0e20f4198d24fc7e219d | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Jul 17 21:19:38 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Jul 17 21:19:38 2010 +0200 |
tree | 70e3f86ae76494fc094bbe25c58ba2befbcf4872 | |
parent | 02c707a87da1b0f78d10a689cc03941a2e8acbc6 [diff] [blame] |
Added support for Python 3. (Roland Puntaier)
diff --git a/src/buffer.c b/src/buffer.c index 1a3497e..e7fecd7 100644 --- a/src/buffer.c +++ b/src/buffer.c
@@ -607,6 +607,9 @@ #ifdef FEAT_PYTHON python_buffer_free(buf); #endif +#ifdef FEAT_PYTHON3 + python3_buffer_free(buf); +#endif #ifdef FEAT_RUBY ruby_buffer_free(buf); #endif