diff --git a/src/MacVim/MMCoreTextView.m b/src/MacVim/MMCoreTextView.m index 8b95ef1cc6..9ee0f654e1 100644 --- a/src/MacVim/MMCoreTextView.m +++ b/src/MacVim/MMCoreTextView.m @@ -42,7 +42,7 @@ #define DRAW_UNDERC 0x08 /* draw undercurl text */ #define DRAW_ITALIC 0x10 /* draw italic text */ #define DRAW_CURSOR 0x20 -#define DRAW_WIDE 0x40 /* draw wide text */ +#define DRAW_WIDE 0x80 /* draw wide text */ #if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_8 #define kCTFontOrientationDefault kCTFontDefaultOrientation diff --git a/src/MacVim/MMTextStorage.m b/src/MacVim/MMTextStorage.m index c7133e826b..862c55dc65 100644 --- a/src/MacVim/MMTextStorage.m +++ b/src/MacVim/MMTextStorage.m @@ -51,7 +51,7 @@ #define DRAW_UNDERC 0x08 /* draw undercurl text */ #define DRAW_ITALIC 0x10 /* draw italic text */ #define DRAW_CURSOR 0x20 -#define DRAW_WIDE 0x40 /* draw wide text */ +#define DRAW_WIDE 0x80 /* draw wide text */ static NSString *MMWideCharacterAttributeName = @"MMWideChar";