[HarfBuzz] harfbuzz: Branch 'master'

Behdad Esfahbod behdad at kemper.freedesktop.org
Tue Dec 4 12:57:12 PST 2012


 src/hb-ucdn/ucdn.c |   16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

New commits:
commit b5e04c7dc6b78e311d1a14f1f808fac76a64c889
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Tue Dec 4 15:57:02 2012 -0500

    [ucdn] Match upstream changes

diff --git a/src/hb-ucdn/ucdn.c b/src/hb-ucdn/ucdn.c
index 473ea63..b61e34a 100644
--- a/src/hb-ucdn/ucdn.c
+++ b/src/hb-ucdn/ucdn.c
@@ -20,13 +20,13 @@
 #include "ucdn.h"
 
 typedef struct {
-    const unsigned char category;
-    const unsigned char combining;
-    const unsigned char bidi_class;
-    const unsigned char mirrored;
-    const unsigned char east_asian_width;
-    const unsigned char normalization_check;
-    const unsigned char script;
+    unsigned char category;
+    unsigned char combining;
+    unsigned char bidi_class;
+    unsigned char mirrored;
+    unsigned char east_asian_width;
+    unsigned char normalization_check;
+    unsigned char script;
 } UCDRecord;
 
 typedef struct {
@@ -86,7 +86,7 @@ static const unsigned short *get_decomp_record(uint32_t code)
     return &decomp_data[index];
 }
 
-static const int get_comp_index(uint32_t code, const Reindex *idx)
+static int get_comp_index(uint32_t code, const Reindex *idx)
 {
     int i;
 



More information about the HarfBuzz mailing list