X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/d66378909931a74ed83e29d592982eaa3e7e0107..de237d4dc2cafee55bd50a15fbeb2d7a880a87cf:/sbr/check_charset.c?ds=sidebyside diff --git a/sbr/check_charset.c b/sbr/check_charset.c index e43459ef..88026666 100644 --- a/sbr/check_charset.c +++ b/sbr/check_charset.c @@ -1,6 +1,4 @@ - -/* - * check_charset.c -- routines for character sets +/* 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 @@ -8,10 +6,12 @@ */ #include -#ifdef HAVE_LANGINFO_H -# include -#endif +#include + +/* Only get_charset() should use norm_charmap(), so hide its + declaration here. */ +char *norm_charmap(char *); /* * Get the current character set @@ -19,12 +19,7 @@ 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)); }