From 90d16dc665ad93b8868aa69bcd6313e4964e2a38 Mon Sep 17 00:00:00 2001 From: Changwoo Ryu Date: Fri, 1 Nov 2002 03:53:07 +0000 Subject: Added Hangul Tone Marks rendering by Jungshik Shin (#96299). 2002-11-01 Changwoo Ryu * modules/hangul/hangul-defs.h modules/hangul/hangul-xft.c: Added Hangul Tone Marks rendering by Jungshik Shin (#96299). --- modules/hangul/hangul-defs.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'modules/hangul/hangul-defs.h') diff --git a/modules/hangul/hangul-defs.h b/modules/hangul/hangul-defs.h index e3e2a20f..8ed34b60 100644 --- a/modules/hangul/hangul-defs.h +++ b/modules/hangul/hangul-defs.h @@ -46,9 +46,13 @@ #define VFILL 0x1160 #define TFILL 0x11A7 +#define HTONE1 0x302E +#define HTONE2 0x302F + #define IS_L(wc) (wc >= LBASE && wc <= LEND) #define IS_V(wc) (wc >= VFILL && wc <= VEND) #define IS_T(wc) (wc >= TBASE && wc <= TEND) +#define IS_M(wc) (wc == HTONE1 || wc == HTONE2) /* jamo which can be composited as a Hangul syllable */ #define IS_L_S(wc) (wc >= LBASE && wc < LBASE + LCOUNT) -- cgit v1.2.1