From 5225394c9d7f6107dcc87042de5d12ad9c313428 Mon Sep 17 00:00:00 2001 From: handa Date: Thu, 5 Aug 2004 07:10:32 +0000 Subject: [PATCH] (enum OTF_LookupFlagBit): Fix OTF_IgnoreMarks. --- src/otf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/otf.h b/src/otf.h index 753e89f..e26e50c 100644 --- a/src/otf.h +++ b/src/otf.h @@ -460,7 +460,7 @@ enum OTF_LookupFlagBit OTF_RightToLeft = 0x0001, OTF_IgnoreBaseGlyphs = 0x0002, OTF_IgnoreLigatures = 0x0004, - OTF_IgnoreMarks = 0x8000, + OTF_IgnoreMarks = 0x0008, OTF_Reserved = 0x00F0, OTF_MarkAttachmentType = 0xFF00 }; -- 1.7.10.4