From 30ca419599b1981f2babfab221d095a38fe77304 Mon Sep 17 00:00:00 2001 From: handa Date: Tue, 26 May 2009 00:30:52 +0000 Subject: [PATCH] *** empty log message *** --- MText.cs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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; -- 1.7.10.4