summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-05-30 12:35:52 +0200
committerBram Moolenaar <Bram@vim.org>2013-05-30 12:35:52 +0200
commita1544c00c8ace9b74714b609b5079ae61faa20b5 (patch)
tree5faf54170e5eb4688efc85e676778bebd8961db2 /src/proto
parent01a7a720ad460b80aa8f749c15134c0d749db960 (diff)
downloadvim-git-a1544c00c8ace9b74714b609b5079ae61faa20b5.tar.gz
updated for version 7.3.1058v7.3.1058
Problem: Call of funcref does not succeed in other script. Solution: Python patch 17: add get_expanded_name(). (ZyX)
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/eval.pro2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro
index 6d46ebd37..7c3f7a13b 100644
--- a/src/proto/eval.pro
+++ b/src/proto/eval.pro
@@ -77,6 +77,7 @@ char_u *get_dict_string __ARGS((dict_T *d, char_u *key, int save));
long get_dict_number __ARGS((dict_T *d, char_u *key));
char_u *get_function_name __ARGS((expand_T *xp, int idx));
char_u *get_expr_name __ARGS((expand_T *xp, int idx));
+char_u *get_expanded_name __ARGS((char_u *name, int check));
int func_call __ARGS((char_u *name, typval_T *args, dict_T *selfdict, typval_T *rettv));
void mzscheme_call_vim __ARGS((char_u *name, typval_T *args, typval_T *rettv));
long do_searchpair __ARGS((char_u *spat, char_u *mpat, char_u *epat, int dir, char_u *skip, int flags, pos_T *match_pos, linenr_T lnum_stop, long time_limit));
@@ -129,4 +130,5 @@ void last_set_msg __ARGS((scid_T scriptID));
void ex_oldfiles __ARGS((exarg_T *eap));
int modify_fname __ARGS((char_u *src, int *usedlen, char_u **fnamep, char_u **bufp, int *fnamelen));
char_u *do_string_sub __ARGS((char_u *str, char_u *pat, char_u *sub, char_u *flags));
+int script_autoload __ARGS((char_u *name, int reload));
/* vim: set ft=c : */