*** empty log message ***
authorhanda <handa>
Fri, 3 Apr 2009 12:15:51 +0000 (12:15 +0000)
committerhanda <handa>
Fri, 3 Apr 2009 12:15:51 +0000 (12:15 +0000)
MText.cs
plist.cs
textprop.cs

index cbf5c8a..0ae3003 100644 (file)
--- a/MText.cs
+++ b/MText.cs
@@ -737,7 +737,7 @@ namespace M17N.Core
       {
        MInterval interval = new MInterval (key, pos - from, stack);
 
-       Console.Write ("divide-reft({0}) at ", pos); DumpOne (false, true);
+       Console.Write ("divide-left({0}) at ", pos); DumpOne (false, true);
        from = pos;
        if (left != null)
          {
index e9caa80..b59f541 100644 (file)
--- a/plist.cs
+++ b/plist.cs
@@ -18,5 +18,6 @@ public class Test
     Console.WriteLine (plist);
     foreach (MPlist p in plist)
       Console.WriteLine (p.Key + ":" + p.Val);
+    Console.WriteLine (plist.Clone ());
   }
 }
index 3131817..fa44fc9 100644 (file)
@@ -20,5 +20,9 @@ public class Test
     mt.DumpProp ();
     mt.Ins (4, new MText ("45678"));
     mt.DumpProp ();
+    mt.PopProp (0, 3, sym);
+    mt.DumpProp ();
+    mt.PopProp (2, 8, sym);
+    mt.DumpProp ();
   }
 }