[HarfBuzz] harfbuzz: Branch 'master'
Behdad Esfahbod
behdad at kemper.freedesktop.org
Sat Oct 26 15:25:15 PDT 2013
src/hb-common.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 133eeba6a32769ec1a7520e7c8a0d2eb1ad986f8
Author: Behdad Esfahbod <behdad at behdad.org>
Date: Sun Oct 27 00:24:59 2013 +0200
Minor
See:
https://github.com/prezi/harfbuzz-js/pull/1/files#r7032397
diff --git a/src/hb-common.h b/src/hb-common.h
index 40c1887..e445504 100644
--- a/src/hb-common.h
+++ b/src/hb-common.h
@@ -90,7 +90,7 @@ typedef union _hb_var_int_t {
typedef uint32_t hb_tag_t;
-#define HB_TAG(a,b,c,d) ((hb_tag_t)((((uint8_t)(a))<<24)|(((uint8_t)(b))<<16)|(((uint8_t)(c))<<8)|((uint8_t)(d))))
+#define HB_TAG(c1,c2,c3,c4) ((hb_tag_t)((((uint8_t)(c1))<<24)|(((uint8_t)(c2))<<16)|(((uint8_t)(c3))<<8)|((uint8_t)(c4))))
#define HB_UNTAG(tag) ((uint8_t)((tag)>>24)), ((uint8_t)((tag)>>16)), ((uint8_t)((tag)>>8)), ((uint8_t)(tag))
#define HB_TAG_NONE HB_TAG(0,0,0,0)
More information about the HarfBuzz
mailing list