diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-03-25 21:53:48 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-03-25 21:53:48 +0000 |
commit | 68b76a69aa818e4220654244a4353ab43c1ae728 (patch) | |
tree | e7542f0a1a67a088cb8b01c7be4c699a8c203a81 /src/proto | |
parent | a88d968da127052294354dc1e7d6ce30610e66ff (diff) | |
download | vim-git-68b76a69aa818e4220654244a4353ab43c1ae728.tar.gz |
updated for version 7.0064
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/eval.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro index 023f422c1..13bd82af8 100644 --- a/src/proto/eval.pro +++ b/src/proto/eval.pro @@ -39,6 +39,8 @@ char_u *get_user_var_name __ARGS((expand_T *xp, int idx)); int list_append_dict __ARGS((list_T *list, dict_T *dict)); 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)); +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)); void set_vim_var_nr __ARGS((int idx, long val)); |