From: handa Date: Tue, 26 May 2009 00:30:52 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=30ca419599b1981f2babfab221d095a38fe77304;p=m17n%2Fm17n-lib-cs.git *** empty log message *** --- diff --git a/MText.cs b/MText.cs index 95197c4..f8d7379 100644 --- a/MText.cs +++ b/MText.cs @@ -27,13 +27,11 @@ namespace M17N.Core None = 0x00, /// A text inserted before a character that has this property /// inherits this property. If the text already has properties - /// of the same key, they are deleted. See the documentation of - /// Sensitive for exception. + /// of the same key, they are deleted. FrontSticky = 0x01, /// A text inserted after a character that has this property /// inherits this property. If the text already has properties - /// of the same key, they are deleted. See the documentation of - /// Sensitive for exception. + /// of the same key, they are deleted. RearSticky = 0x02, /// This property is deleted from a span of text if the span is /// modified (i.e. a character is changed, a text is inserted, @@ -41,12 +39,14 @@ namespace M17N.Core /// property of the same key is added, which means that this /// property is not stackable. Sensitive = 0x04, - /// This property is deleted from a span of text if a text just - /// before the span is modified, inserted, or deleted. - FrontSensitive = 0x08, - /// This property is deleted from a span of text if a text just - /// after the span is modified, inserted, or deleted. - RearSensitive = 0x10 + /// Like Sensitive but also this property is deleted from a span + /// of text if a text just before the span is modified, + /// inserted, or deleted. + FrontSensitive = 0x0C, + /// Like Sensitive but also this property is deleted from a span + /// of text if a text just after the span is modified, inserted, + /// or deleted. + RearSensitive = 0x14 }; internal MSymbol key;