summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-11-12 04:44:01 +0100
committerBram Moolenaar <Bram@vim.org>2013-11-12 04:44:01 +0100
commitcc63c647eee82ca4f3a9c7b09c1bd86933e913d4 (patch)
tree1568b983900ab159817a190316b18f511d2a9ade /src/structs.h
parentefe06f4dd8713e5a8dc8c537b0fdf89101a87c20 (diff)
downloadvim-git-cc63c647eee82ca4f3a9c7b09c1bd86933e913d4.tar.gz
updated for version 7.4.088v7.4.088
Problem: When spell checking is enabled Asian characters are always marked as error. Solution: When 'spelllang' contains "cjk" do not mark Asian characters as error. (Ken Takata)
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index 3c3fd7ba2..4186416bf 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1310,6 +1310,9 @@ typedef struct {
regprog_T *b_cap_prog; /* program for 'spellcapcheck' */
char_u *b_p_spf; /* 'spellfile' */
char_u *b_p_spl; /* 'spelllang' */
+# ifdef FEAT_MBYTE
+ int b_cjk; /* all CJK letters as OK */
+# endif
#endif
#if !defined(FEAT_SYN_HL) && !defined(FEAT_SPELL)
int dummy;