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>
oldstable
Nikolay Sivov 2017-01-31 14:43:48 +03:00 committed by Alexandre Julliard
parent c4626bba01
commit 7e6a4b2bf5
1 changed files with 1 additions and 1 deletions

View File

@ -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])
{