Mercurial > vim
annotate src/proto/if_python.pro @ 5172:fca6ba0d2d66 v7.4a.012
updated for version 7.4a.012
Problem: "make test" fails when using a shadow directory.
Solution: Create links for files in src/po. (James McCoy)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Fri, 12 Jul 2013 20:16:58 +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 : */ |