diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-27 17:01:56 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-27 17:01:56 +0000 |
commit | 3991dab8e0a3815bd5349c1ffa88476819971c48 (patch) | |
tree | cf81e7c822725142320f0ca0721357f34553cfb9 /src/spell.c | |
parent | 899dddf88804af20d560b5277f1ca1bc4dd8e2b3 (diff) | |
download | vim-git-3991dab8e0a3815bd5349c1ffa88476819971c48.tar.gz |
updated for version 7.0cv7.0c
Diffstat (limited to 'src/spell.c')
-rw-r--r-- | src/spell.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/spell.c b/src/spell.c index c2bf58d01..32ce2b49d 100644 --- a/src/spell.c +++ b/src/spell.c @@ -4667,7 +4667,6 @@ struct affentry_S char_u *ae_flags; /* flags on the affix (can be NULL) */ char_u *ae_cond; /* condition (NULL for ".") */ regprog_T *ae_prog; /* regexp program for ae_cond or NULL */ - char_u ae_nocomp; /* word with affix not compoundable */ }; #ifdef FEAT_MBYTE @@ -5474,7 +5473,6 @@ spell_read_aff(spin, fname) && itemcnt >= 5) { affentry_T *aff_entry; - int nocomp = FALSE; int upper = FALSE; int lasti = 5; @@ -5492,7 +5490,6 @@ spell_read_aff(spin, fname) sizeof(affentry_T), TRUE); if (aff_entry == NULL) break; - aff_entry->ae_nocomp = nocomp; if (STRCMP(items[2], "0") != 0) aff_entry->ae_chop = getroom_save(spin, items[2]); |