usp10: Fix LB27 rule that should check for prefix, not suffix.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Aric Stewart <aric@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c4626bba01
commit
7e6a4b2bf5
|
@ -384,7 +384,7 @@ void BREAK_line(const WCHAR *chars, int count, const SCRIPT_ANALYSIS *sa, SCRIPT
|
|||
if (break_class[i+1] == b_IN || break_class[i+1] == b_PO)
|
||||
else_break(&break_before[i+1],b_x);
|
||||
}
|
||||
if (break_class[i] == b_PO)
|
||||
if (break_class[i] == b_PR)
|
||||
{
|
||||
switch (break_class[i+1])
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue