]> asedeno.scripts.mit.edu Git - PuTTY_svn.git/blobdiff - unix/uxucs.c
It's probably well past time for this: change PuTTY's default
[PuTTY_svn.git] / unix / uxucs.c
index 9d8242f8b1876412d35b7b38015958bf15383c84..8cd300d328aaad55f6ad4b789e119063a54d49c3 100644 (file)
@@ -253,17 +253,19 @@ const char *cp_name(int codepage)
 const char *cp_enumerate(int index)
 {
     int charset;
-    if (index == 0)
-       return "Use font encoding";
-    charset = charset_localenc_nth(index-1);
-    if (charset == CS_NONE)
+    charset = charset_localenc_nth(index);
+    if (charset == CS_NONE) {
+        /* "Use font encoding" comes after all the named charsets */
+        if (charset_localenc_nth(index-1) != CS_NONE)
+            return "Use font encoding";
        return NULL;
+    }
     return charset_to_localenc(charset);
 }
 
 int decode_codepage(char *cp_name)
 {
     if (!*cp_name)
-       return CS_NONE;                /* use font encoding */
+       return CS_UTF8;
     return charset_from_localenc(cp_name);
 }