diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-05-16 14:41:10 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-05-16 14:41:10 +0000 |
commit | 8f0b2d46c7020c2ae097c748940f74b3af1383f7 (patch) | |
tree | d669dfdc7c3c1f0dfd85927dd4f1236a936b6126 /src/edit.c | |
parent | 856b9fef3a20557b100202efd3610f26cec5bb71 (diff) | |
download | vim-git-8f0b2d46c7020c2ae097c748940f74b3af1383f7.tar.gz |
updated for version 7.2-176v7.2.176
Diffstat (limited to 'src/edit.c')
-rw-r--r-- | src/edit.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/edit.c b/src/edit.c index ee30a3e30..4cb727cdc 100644 --- a/src/edit.c +++ b/src/edit.c @@ -69,11 +69,7 @@ struct compl_S compl_T *cp_prev; char_u *cp_str; /* matched text */ char cp_icase; /* TRUE or FALSE: ignore case */ -#ifdef S_SPLINT_S /* splint can't handle array of pointers */ - char_u **cp_text; /* text for the menu */ -#else char_u *(cp_text[CPT_COUNT]); /* text for the menu */ -#endif char_u *cp_fname; /* file containing the match, allocated when * cp_flags has FREE_FNAME */ int cp_flags; /* ORIGINAL_TEXT, CONT_S_IPOS or FREE_FNAME */ @@ -3835,11 +3831,7 @@ ins_compl_add_tv(tv, dir) char_u *word; int icase = FALSE; int adup = FALSE; -#ifdef S_SPLINT_S /* splint doesn't parse array of pointers correctly */ - char_u **cptext; -#else char_u *(cptext[CPT_COUNT]); -#endif if (tv->v_type == VAR_DICT && tv->vval.v_dict != NULL) { |