Include stdlib.h.
authorhanda <handa>
Mon, 18 Apr 2005 12:59:54 +0000 (12:59 +0000)
committerhanda <handa>
Mon, 18 Apr 2005 12:59:54 +0000 (12:59 +0000)
(wordseg_propertize): Add dummy function for the case that wordcut
library doesn't exist.
(wordseg_propertize): Fix for old wordcut library.

src/word-thai.c

index 17b2b7f..433e09f 100644 (file)
@@ -157,12 +157,14 @@ wordseg_propertize (MText *mt, int pos, int from, int to, unsigned char *tis)
            M17N_OBJECT_UNREF (this);
        }
 
+      this = mtext_property (Mthai_wordseg, Mt,
+                            MTEXTPROP_VOLATILE_WEAK | MTEXTPROP_NO_MERGE);
       last = from + wordcut_result.start[i];
-      mtext_attach_property (mt, last, last + wordcut_result.offset[i], prop);
+      mtext_attach_property (mt, last, last + wordcut_result.offset[i], this);
       if (pos >= last && pos < last + wordcut_result.offset[i])
        prop = this;
       else
-       m17n_object_unref (prop);
+       m17n_object_unref (this);
       last += wordcut_result.offset[i];
     }
   return prop;