Mercurial > vim
annotate src/proto/if_python.pro @ 5958:f7bc601823e5 v7.4.320
updated for version 7.4.320
Problem: Possible crash when an BufLeave autocommand deletes the buffer.
Solution: Check for the window pointer being valid. Postpone freeing the
window until autocommands are done. (Yasuhiro Matsumoto)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Thu, 12 Jun 2014 14:01:31 +0200 |
parents | f063be86b632 |
children | 38add5a3d617 |
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)); |
12 void set_ref_in_python __ARGS((int copyID)); | |
7 | 13 /* vim: set ft=c : */ |