1
0
forked from aniani/vim

updated for version 7.0b01

This commit is contained in:
Bram Moolenaar
2006-03-25 21:59:56 +00:00
parent 2217cae0c0
commit fa1d140a2c
10 changed files with 42 additions and 27 deletions

View File

@@ -350,13 +350,15 @@ EXTERN int p_consk; /* 'conskey' */
#ifdef FEAT_LINEBREAK
EXTERN char_u *p_breakat; /* 'breakat' */
#endif
#ifdef FEAT_MBYTE
EXTERN char_u *p_cmp; /* 'casemap' */
EXTERN unsigned cmp_flags;
#ifdef IN_OPTION_C
# ifdef IN_OPTION_C
static char *(p_cmp_values[]) = {"internal", "keepascii", NULL};
# endif
# define CMP_INTERNAL 0x001
# define CMP_KEEPASCII 0x002
#endif
#define CMP_INTERNAL 0x001
#define CMP_KEEPASCII 0x002
#ifdef FEAT_MBYTE
EXTERN char_u *p_enc; /* 'encoding' */
EXTERN int p_deco; /* 'delcombine' */