diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-06-12 20:12:02 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-06-12 20:12:02 +0200 |
commit | 8bcf9654dcb00a8534a523d6924c16f961338315 (patch) | |
tree | 99abef6db0c38795fc7045e45bc6d0d6812364e0 /src/proto | |
parent | 97ea511bbf56d1808260542594cfcdd7e0f963b4 (diff) | |
download | vim-8bcf9654dcb00a8534a523d6924c16f961338315.zip |
updated for version 7.2.443
Problem: Using taglist() on a tag file with duplicate fields generates an
internal error. (Peter Odding)
Solution: Check for duplicate field names.
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/eval.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro index e817769ed..6d11d970d 100644 --- a/src/proto/eval.pro +++ b/src/proto/eval.pro @@ -56,6 +56,7 @@ dictitem_T *dictitem_alloc __ARGS((char_u *key)); void dictitem_free __ARGS((dictitem_T *item)); int dict_add __ARGS((dict_T *d, dictitem_T *item)); int dict_add_nr_str __ARGS((dict_T *d, char *key, long nr, char_u *str)); +dictitem_T *dict_find __ARGS((dict_T *d, char_u *key, int len)); 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)); |