The attached patch, against 071000 sources, is a one-line fix for an
error in the UnixPSGraphics rendering of characters in conjunction
with remapGlyphs.  Just one of those programmer ("me") things... :-(.
-- 
[EMAIL PROTECTED] (WJCarpenter)    PGP 0x91865119
38 95 1B 69 C9 C6 3D 25    73 46 32 04 69 D6 ED F3

diff -ru abi-071000-ORIG/src/af/xap/unix/xap_UnixPSGraphics.cpp 
abi-071000/src/af/xap/unix/xap_UnixPSGraphics.cpp
--- abi-071000-ORIG/src/af/xap/unix/xap_UnixPSGraphics.cpp      Fri Jul  7 16:46:48 
2000
+++ abi-071000/src/af/xap/unix/xap_UnixPSGraphics.cpp   Mon Jul 10 16:52:50 2000
@@ -345,7 +341,7 @@
 
                // TODO deal with Unicode issues.
 
-               currentChar = remapGlyph(*pS, currentChar >= 256 ? UT_TRUE : UT_FALSE);
+               currentChar = remapGlyph(*pS, *pS >= 256 ? UT_TRUE : UT_FALSE);
                switch (currentChar)
                {
                case 0x08:              *pD++ = '\\';   *pD++ = 'b';    break;

Reply via email to