diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-06-30 22:04:15 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-06-30 22:04:15 +0000 |
commit | d042c56e34b5c032e79fa1fee19ce6d16ac99e49 (patch) | |
tree | 4a8b46e7449632fadf17aa764ae4eb60ad749459 /src/structs.h | |
parent | e6b165e0f4f70d22a4fbcc5c9a1818417bdb1b04 (diff) | |
download | vim-git-d042c56e34b5c032e79fa1fee19ce6d16ac99e49.tar.gz |
updated for version 7.0098
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h index e0d129c60..bc2b1bbd5 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1469,7 +1469,10 @@ struct file_buffer /* for spell checking */ garray_T b_langp; /* list of pointers to slang_T, see spell.c */ - + char_u b_spell_ismw[256];/* flags: is midword char */ +# ifdef FEAT_MBYTE + char_u *b_spell_ismw_mb; /* multi-byte midword chars */ +# endif #endif /* FEAT_SYN_HL */ #ifdef FEAT_SIGNS |