ICU-5016 Fix problem with reverse rule when it backs into the beginning of the text.

X-SVN-Rev: 19015
This commit is contained in:
Andy Heninger 2006-01-21 07:05:11 +00:00
parent 78a379d0ed
commit 06ac01c8ee

View File

@ -1,4 +1,4 @@
# Copyright (c) 2002-2005, International Business Machines Corporation and
# Copyright (c) 2002-2006, International Business Machines Corporation and
# others. All Rights Reserved.
#
# file: line.txt
@ -169,5 +169,5 @@ $H3 $JT* $Extend*;
$SpaceGlue = ([$ZW $CL $IS $NS $OP] ($Extend* $SP)) | (($Extend* $SP)+ $OP);
$ClumpingChars = [^$SP $BK $CR $LF];
!. . $ClumpingChars* ($SpaceGlue $ClumpingChars*)* (. | $LF $CR);
!. . $ClumpingChars* ($SpaceGlue $ClumpingChars*)* (. | $LF $CR)?;