]> diplodocus.org Git - nmh/blobdiff - sbr/check_charset.c
uip/folder.c: Rewrite plural test to common form.
[nmh] / sbr / check_charset.c
index 5d98774c5e12e895b681ac8bfb25d3ec0169d8a5..88026666065f3845a187fa156d95f7888a3d83b1 100644 (file)
@@ -1,8 +1,4 @@
-
-/*
- * check_charset.c -- routines for character sets
- *
- * $Id$
+/* check_charset.c -- routines for character sets
  *
  * This code is Copyright (c) 2002, by the authors of nmh.  See the
  * COPYRIGHT file in the root directory of the nmh distribution for
@@ -11,6 +7,22 @@
 
 #include <h/mh.h>
 
+#include <langinfo.h>
+
+/* Only get_charset() should use norm_charmap(), so hide its
+   declaration here. */
+char *norm_charmap(char *);
+
+/*
+ * Get the current character set
+ */
+char *
+get_charset ()
+{
+    return norm_charmap(nl_langinfo (CODESET));
+}
+
+
 /*
  * Check if we can display a given character set natively.
  * We are passed the length of the initial part of the
@@ -28,12 +40,13 @@ check_charset (char *str, int len)
 
     /* Cache the name of our default character set */
     if (!mm_charset) {
-       if (!(mm_charset = getenv ("MM_CHARSET")))
+       if (!(mm_charset = get_charset ()))
            mm_charset = "US-ASCII";
        mm_len = strlen (mm_charset);
 
-       /* US-ASCII is a subset of the ISO-8859-X character sets */
-       if (!strncasecmp("ISO-8859-", mm_charset, 9)) {
+       /* US-ASCII is a subset of the ISO-8859-X and UTF-8 character sets */
+       if (!strncasecmp("ISO-8859-", mm_charset, 9) ||
+               !strcasecmp("UTF-8", mm_charset)) {
            alt_charset = "US-ASCII";
            alt_len = strlen (alt_charset);
        }
@@ -62,7 +75,7 @@ write_charset_8bit (void)
      * Cache the name of the character set to
      * use for 8bit text.
      */
-    if (!mm_charset && !(mm_charset = getenv ("MM_CHARSET")))
+    if (!mm_charset && !(mm_charset = get_charset ()))
            mm_charset = "x-unknown";
 
     return mm_charset;