Bugfix: -microsoft-symbol encoding was not recognized.
diff --git a/graphics/x11drv/xfont.c b/graphics/x11drv/xfont.c index 25396d9..00741c3 100644 --- a/graphics/x11drv/xfont.c +++ b/graphics/x11drv/xfont.c
@@ -375,7 +375,7 @@ else /* ... and -microsoft-cp125x */ { fi->df.dfCharSet = OEM_CHARSET; - if( !strncasecmp(lpch, localMSEncoding, 6) ) + if( !strncasecmp(lpch, localMSEncoding, strlen(localMSEncoding)) ) { lpch = LFD_Advance( lpch, 1 ); if( lpch && (i = atoi( lpch )) < numCPTranslation )