]> diplodocus.org Git - nmh/blobdiff - sbr/check_charset.c
Added warning about when post(1) can't refile(1) a draft.
[nmh] / sbr / check_charset.c
index d6b8ca34a70a12fefda673c03d4dd088c6a5f2a2..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
  */
 
 #include <h/mh.h>
-#ifdef HAVE_LANGINFO_H
-# include <langinfo.h>
-#endif
 
+#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 ()
 {
-    char *charset = getenv ("MM_CHARSET");
-#if defined(HAVE_NL_LANGINFO) && defined(CODESET)
-    if (!charset)
-       charset = norm_charmap(nl_langinfo (CODESET));
-#endif
-    return charset;
+    return norm_charmap(nl_langinfo (CODESET));
 }