summaryrefslogtreecommitdiff
path: root/src/proto/eval.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-06-12 20:12:02 +0200
committerBram Moolenaar <Bram@vim.org>2010-06-12 20:12:02 +0200
commit8bcf9654dcb00a8534a523d6924c16f961338315 (patch)
tree99abef6db0c38795fc7045e45bc6d0d6812364e0 /src/proto/eval.pro
parent97ea511bbf56d1808260542594cfcdd7e0f963b4 (diff)
downloadvim-git-8bcf9654dcb00a8534a523d6924c16f961338315.tar.gz
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/eval.pro')
-rw-r--r--src/proto/eval.pro1
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));