On Tue, Aug 22, 2000 at 06:44:44PM +0200, Caolan McNamara wrote:

[...]
 
> As Norwegian and Danish are in as 1252 I suspect strongly that Swedish is 
> 1252 as
> well seeing as they all three languages are within spitting distance of 
> eachother
> and use the same characters. Almost certainly you should change Swedish to 
> 1252
> in text.c.
> 
> Yup, checking back against the original text.c I see the problem, there was
> a layout error in my text version of the word spec and I made a mistake from
> Slovak downwords and in the fix for that I got Sweden wrong, hopefully they'll
> forgive me for sending them into Eastern Europe. It would be a good idea for
> someone to double check all the languages against their windows codepage.

Aargghh!!! Guru error. There go my conspiracy theories out the window...

Ah well. Here's the patch.

(When was the last time you saw a single bit flip patch? ;-)

Martin (who's still doubly subscribed to the list, and would be perfectly 
happy with a "write-only" subscription as the archive is fast enough.)
 
[...]

-- 
Martin Vermeer [EMAIL PROTECTED]   Phone +358 9 295 55 215   Fax +358 9 295 55 200
Finnish Geodetic Institute    Geodeetinrinne 2    FIN-02430 Masala FINLAND
:wq
Index: text.c
===================================================================
RCS file: /cvsroot/wv/text.c,v
retrieving revision 1.46
diff -u -r1.46 text.c
--- text.c      2000/08/23 02:19:38     1.46
+++ text.c      2000/08/23 12:26:59
@@ -135,7 +135,7 @@
                        return("CP1252");
                case 0x041b:    /*Slovak*/                    return("CP1250");
                case 0x041c:    /*Albanian*/                  return("CP1251");
-               case 0x041d:    /*Swedish*/                   return("CP1250");
+               case 0x041d:    /*Swedish*/                   return("CP1252");
                case 0x041e:    /*Thai*/                      return("CP874");
                case 0x041f:    /*Turkish*/                   return("CP1254");
                case 0x0420:    /*Urdu*/                      return("CP1256");

Reply via email to