diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-10-07 21:02:47 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-10-07 21:02:47 +0000 |
commit | 3fdfa4a9a52ab3d1a790262ee872a49853ad4626 (patch) | |
tree | 76f57a06a5f3b9e0abc15446b38722658fde7e1e /src/structs.h | |
parent | e5f258eb4c4b87ea1d6f61c1a0a9deecbb5d9726 (diff) | |
download | vim-git-3fdfa4a9a52ab3d1a790262ee872a49853ad4626.tar.gz |
updated for version 7.0017v7.0017
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/structs.h b/src/structs.h index 9297f1306..4975af531 100644 --- a/src/structs.h +++ b/src/structs.h @@ -854,16 +854,18 @@ typedef struct #define CONV_NONE 0 #define CONV_TO_UTF8 1 -#define CONV_TO_LATIN1 2 -#define CONV_ICONV 3 +#define CONV_9_TO_UTF8 2 +#define CONV_TO_LATIN1 3 +#define CONV_TO_LATIN9 4 +#define CONV_ICONV 5 #ifdef WIN3264 -# define CONV_CODEPAGE 4 /* codepage -> codepage */ +# define CONV_CODEPAGE 10 /* codepage -> codepage */ #endif #ifdef MACOS_X -# define CONV_MAC_LATIN1 5 -# define CONV_LATIN1_MAC 6 -# define CONV_MAC_UTF8 7 -# define CONV_UTF8_MAC 8 +# define CONV_MAC_LATIN1 20 +# define CONV_LATIN1_MAC 21 +# define CONV_MAC_UTF8 22 +# define CONV_UTF8_MAC 23 #endif /* |