annotate src/proto/if_python.pro @ 3736:dc65e6429d2c v7.3.627

updated for version 7.3.627 Problem: When using the "n" flag with the ":s" command a \= substitution will not be evaluated. Solution: Do perform the evaluation, so that a function can be invoked at every matching position without changing the text. (Christian Brabandt)
author Bram Moolenaar <bram@vim.org>
date Wed, 08 Aug 2012 16:51:15 +0200
parents c052f3b79b99
children cfd76908da25
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 /* if_python.c */
1125
96cd8222a819 updated for version 7.1a
vimboss
parents: 800
diff changeset
2 int python_enabled __ARGS((int verbose));
96cd8222a819 updated for version 7.1a
vimboss
parents: 800
diff changeset
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
96cd8222a819 updated for version 7.1a
vimboss
parents: 800
diff changeset
5 void ex_python __ARGS((exarg_T *eap));
96cd8222a819 updated for version 7.1a
vimboss
parents: 800
diff changeset
6 void ex_pyfile __ARGS((exarg_T *eap));
96cd8222a819 updated for version 7.1a
vimboss
parents: 800
diff changeset
7 void python_buffer_free __ARGS((buf_T *buf));
96cd8222a819 updated for version 7.1a
vimboss
parents: 800
diff changeset
8 void python_window_free __ARGS((win_T *win));
3618
c052f3b79b99 updated for version 7.3.569
Bram Moolenaar <bram@vim.org>
parents: 2384
diff changeset
9 void do_pyeval __ARGS((char_u *str, typval_T *rettv));
c052f3b79b99 updated for version 7.3.569
Bram Moolenaar <bram@vim.org>
parents: 2384
diff changeset
10 void set_ref_in_python __ARGS((int copyID));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 /* vim: set ft=c : */