diff options
Diffstat (limited to 'src/proto/eval.pro')
-rw-r--r-- | src/proto/eval.pro | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro index a6490cab6..b8ba21514 100644 --- a/src/proto/eval.pro +++ b/src/proto/eval.pro @@ -42,15 +42,15 @@ void ex_lockvar __ARGS((exarg_T *eap)); int do_unlet __ARGS((char_u *name, int forceit)); void del_menutrans_vars __ARGS((void)); char_u *get_user_var_name __ARGS((expand_T *xp, int idx)); +list_T *list_alloc __ARGS((void)); void list_unref __ARGS((list_T *l)); +void list_free __ARGS((list_T *l)); dictitem_T *dict_lookup __ARGS((hashitem_T *hi)); int list_append_dict __ARGS((list_T *list, dict_T *dict)); int garbage_collect __ARGS((void)); -list_T *list_alloc __ARGS((void)); -void list_free __ARGS((list_T *l)); dict_T *dict_alloc __ARGS((void)); int dict_add_nr_str __ARGS((dict_T *d, char *key, long nr, char_u *str)); -char_u *get_dict_string __ARGS((dict_T *d, char_u *key)); +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)); |