Mercurial > vim
annotate src/proto/if_python.pro @ 7184:0a256475412f v7.4.902
commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Oct 30 16:46:55 2015 +0100
patch 7.4.902
Problem: Problems with using the MS-Windows console.
Solution: Revert patches 7.4.851, 7.4.876 and 7.4.886 until we find a better
solution. (suggested by Ken Takata)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 30 Oct 2015 17:00:04 +0100 |
parents | 38add5a3d617 |
children | 21b0a39d13ed |
rev | line source |
---|---|
7 | 1 /* if_python.c */ |
1125 | 2 int python_enabled __ARGS((int verbose)); |
3 void python_end __ARGS((void)); | |
2384
aeea25941392
Temporary solution for crashing when using both :py and :py3: disallow both in
Bram Moolenaar <bram@vim.org>
parents:
1125
diff
changeset
|
4 int python_loaded __ARGS((void)); |
1125 | 5 void ex_python __ARGS((exarg_T *eap)); |
5112
f063be86b632
updated for version 7.3.1299
Bram Moolenaar <bram@vim.org>
parents:
4435
diff
changeset
|
6 void ex_pyfile __ARGS((exarg_T *eap)); |
4435 | 7 void ex_pydo __ARGS((exarg_T *eap)); |
1125 | 8 void python_buffer_free __ARGS((buf_T *buf)); |
9 void python_window_free __ARGS((win_T *win)); | |
4401 | 10 void python_tabpage_free __ARGS((tabpage_T *tab)); |
3618 | 11 void do_pyeval __ARGS((char_u *str, typval_T *rettv)); |
6565 | 12 int set_ref_in_python __ARGS((int copyID)); |
7 | 13 /* vim: set ft=c : */ |