From 26bfd9ac75aa4d91719b7c9e8b92ca0c19ce1df0 Mon Sep 17 00:00:00 2001 From: "erik%netscape.com" Date: Thu, 13 Apr 2000 21:13:04 +0000 Subject: [PATCH] bug 35108; we weren't drawing the geometric shapes from the Japanese JIS X 0208 fonts on Unix; fixed now git-svn-id: svn://10.0.0.236/trunk@65868 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/gfx/src/gtk/nsFontMetricsGTK.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/gfx/src/gtk/nsFontMetricsGTK.cpp b/mozilla/gfx/src/gtk/nsFontMetricsGTK.cpp index cc84d860c0e..68511132ad8 100644 --- a/mozilla/gfx/src/gtk/nsFontMetricsGTK.cpp +++ b/mozilla/gfx/src/gtk/nsFontMetricsGTK.cpp @@ -870,7 +870,7 @@ SetUpFontCharSetInfo(nsFontCharSetInfo* aSelf) */ if (aSelf->Convert == DoubleByteConvert) { PRUint32* map = aSelf->mMap; - for (PRUint16 i = 0; i < (0x3000 >> 5); i++) { + for (PRUint16 i = 0; i < (0x2200 >> 5); i++) { map[i] = 0; } }