comparison src/proto/eval.pro @ 4621:66e615ce7f61 v7.3.1058

updated for version 7.3.1058 Problem: Call of funcref does not succeed in other script. Solution: Python patch 17: add get_expanded_name(). (ZyX)
author Bram Moolenaar <bram@vim.org>
date Thu, 30 May 2013 12:35:52 +0200
parents 21a99611149b
children 18ba89e06fab
comparison
equal deleted inserted replaced
4620:980dfdc910b3 4621:66e615ce7f61
75 dictitem_T *dict_find __ARGS((dict_T *d, char_u *key, int len)); 75 dictitem_T *dict_find __ARGS((dict_T *d, char_u *key, int len));
76 char_u *get_dict_string __ARGS((dict_T *d, char_u *key, int save)); 76 char_u *get_dict_string __ARGS((dict_T *d, char_u *key, int save));
77 long get_dict_number __ARGS((dict_T *d, char_u *key)); 77 long get_dict_number __ARGS((dict_T *d, char_u *key));
78 char_u *get_function_name __ARGS((expand_T *xp, int idx)); 78 char_u *get_function_name __ARGS((expand_T *xp, int idx));
79 char_u *get_expr_name __ARGS((expand_T *xp, int idx)); 79 char_u *get_expr_name __ARGS((expand_T *xp, int idx));
80 char_u *get_expanded_name __ARGS((char_u *name, int check));
80 int func_call __ARGS((char_u *name, typval_T *args, dict_T *selfdict, typval_T *rettv)); 81 int func_call __ARGS((char_u *name, typval_T *args, dict_T *selfdict, typval_T *rettv));
81 void mzscheme_call_vim __ARGS((char_u *name, typval_T *args, typval_T *rettv)); 82 void mzscheme_call_vim __ARGS((char_u *name, typval_T *args, typval_T *rettv));
82 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)); 83 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));
83 void set_vim_var_nr __ARGS((int idx, long val)); 84 void set_vim_var_nr __ARGS((int idx, long val));
84 long get_vim_var_nr __ARGS((int idx)); 85 long get_vim_var_nr __ARGS((int idx));
127 int store_session_globals __ARGS((FILE *fd)); 128 int store_session_globals __ARGS((FILE *fd));
128 void last_set_msg __ARGS((scid_T scriptID)); 129 void last_set_msg __ARGS((scid_T scriptID));
129 void ex_oldfiles __ARGS((exarg_T *eap)); 130 void ex_oldfiles __ARGS((exarg_T *eap));
130 int modify_fname __ARGS((char_u *src, int *usedlen, char_u **fnamep, char_u **bufp, int *fnamelen)); 131 int modify_fname __ARGS((char_u *src, int *usedlen, char_u **fnamep, char_u **bufp, int *fnamelen));
131 char_u *do_string_sub __ARGS((char_u *str, char_u *pat, char_u *sub, char_u *flags)); 132 char_u *do_string_sub __ARGS((char_u *str, char_u *pat, char_u *sub, char_u *flags));
133 int script_autoload __ARGS((char_u *name, int reload));
132 /* vim: set ft=c : */ 134 /* vim: set ft=c : */