[PATCH 1/2] usp10: Fixed LB30 condition, breaking after CP class

Aric Stewart aric at codeweavers.com
Tue Jan 31 07:53:00 CST 2017


Signed-off-by: Aric Stewart <aric at codeweavers.com>

On 1/31/17 5:43 AM, Nikolay Sivov wrote:
> Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
> ---
>  dlls/usp10/breaking.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/dlls/usp10/breaking.c b/dlls/usp10/breaking.c
> index eb3fc00067..9746f5d5e2 100644
> --- a/dlls/usp10/breaking.c
> +++ b/dlls/usp10/breaking.c
> @@ -414,7 +414,7 @@ void BREAK_line(const WCHAR *chars, int count, const SCRIPT_ANALYSIS *sa, SCRIPT
>                   break_class[i+1] == b_OP)
>                  else_break(&break_before[i+1],b_x);
>              if (break_class[i] == b_CP &&
> -                (break_class[i+1] == b_AL || break_class[i] == b_HL || break_class[i] == b_NU))
> +                (break_class[i+1] == b_AL || break_class[i+1] == b_HL || break_class[i+1] == b_NU))
>                  else_break(&break_before[i+1],b_x);
>  
>              /* LB30a */
> 



More information about the wine-patches mailing list