Module: wine Branch: master Commit: 5bf7622fc3ad043cb17accfefcaf5b6371f80a8e URL: http://source.winehq.org/git/wine.git/?a=commit;h=5bf7622fc3ad043cb17accfefc...
Author: Aric Stewart aric@codeweavers.com Date: Tue Jun 7 11:07:38 2011 -0500
usp10: Correct matra type for Oriya 0x0B57.
---
dlls/usp10/shape.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/usp10/shape.c b/dlls/usp10/shape.c index 36ed75a..d4f7d17 100644 --- a/dlls/usp10/shape.c +++ b/dlls/usp10/shape.c @@ -2335,9 +2335,9 @@ static int oriya_lex(WCHAR c) case 0x0B3F: case 0x0B56: return lex_Matra_above; case 0x0B3E: + case 0x0B57: case 0x0B40: return lex_Matra_post; - case 0x0B47: - case 0x0B57: return lex_Matra_pre; + case 0x0B47: return lex_Matra_pre; case 0x0B4D: return lex_Halant; case 0x200C: return lex_ZWNJ; case 0x200D: return lex_ZWJ;