From: handa Date: Fri, 3 Apr 2009 12:15:51 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f937bdb1e47a8af9d4a9fbadbccd40ac3d041b9;p=m17n%2Fm17n-lib-cs.git *** empty log message *** --- diff --git a/MText.cs b/MText.cs index cbf5c8a..0ae3003 100644 --- 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) { diff --git a/plist.cs b/plist.cs index e9caa80..b59f541 100644 --- 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 ()); } } diff --git a/textprop.cs b/textprop.cs index 3131817..fa44fc9 100644 --- a/textprop.cs +++ b/textprop.cs @@ -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 (); } }