comparison src/buffer.c @ 2329:ad2889f48843 vim73

Added support for Python 3. (Roland Puntaier)
author Bram Moolenaar <bram@vim.org>
date Sat, 17 Jul 2010 21:19:38 +0200
parents 966a5609669e
children d8e4b27cef80
comparison
equal deleted inserted replaced
2328:15379284e55a 2329:ad2889f48843
604 #ifdef FEAT_PERL 604 #ifdef FEAT_PERL
605 perl_buf_free(buf); 605 perl_buf_free(buf);
606 #endif 606 #endif
607 #ifdef FEAT_PYTHON 607 #ifdef FEAT_PYTHON
608 python_buffer_free(buf); 608 python_buffer_free(buf);
609 #endif
610 #ifdef FEAT_PYTHON3
611 python3_buffer_free(buf);
609 #endif 612 #endif
610 #ifdef FEAT_RUBY 613 #ifdef FEAT_RUBY
611 ruby_buffer_free(buf); 614 ruby_buffer_free(buf);
612 #endif 615 #endif
613 #ifdef FEAT_AUTOCMD 616 #ifdef FEAT_AUTOCMD