Index: src/OFSystemInfo.m ================================================================== --- src/OFSystemInfo.m +++ src/OFSystemInfo.m @@ -108,10 +108,14 @@ OF_STRING_ENCODING_ISO_8859_1; else if (strcmp(tmp, "iso8859-15") == 0 || strcmp(tmp, "iso-8859-15") == 0) native8BitEncoding = OF_STRING_ENCODING_ISO_8859_15; + /* Windows uses a codepage */ + else if (strcmp(tmp, "1252") == 0) + native8BitEncoding = + OF_STRING_ENCODING_WINDOWS_1252; } /* Territory */ if ((tmp = strrchr(locale, '_')) != NULL) { *tmp++ = '\0';