summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2008-03-15 12:12:59 +0000
committerBram Moolenaar <Bram@vim.org>2008-03-15 12:12:59 +0000
commit4c4f7105d26a018cd7ec674105082d99ea3420c4 (patch)
tree6ee07408144788502d0b84bfefd849db1f889643
parent7dc767c8d503e8922c44879491e4c6793cdc7c04 (diff)
updated for version 7.1-280v7.1.280
-rw-r--r--src/version.c2
-rw-r--r--src/vim.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/version.c b/src/version.c
index 3a9bc0d05f..9811dda6aa 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 280,
+/**/
279,
/**/
278,
diff --git a/src/vim.h b/src/vim.h
index 989dd23cef..6c2cde5b02 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -463,7 +463,7 @@ typedef unsigned long u8char_T; /* long should be 32 bits or more */
*/
#if defined(FEAT_XIM) \
|| (defined(FEAT_GUI) && (defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME))) \
- || defined(FEAT_GUI_MAC)
+ || (defined(FEAT_GUI_MAC) && defined(FEAT_MBYTE))
# define USE_IM_CONTROL
#endif